13
0
geforkt von Mirrors/Paper
Paper/nms-patches/ShapeDetectorShape.patch
2020-08-12 07:00:00 +10:00

17 Zeilen
600 B
Diff

--- a/net/minecraft/server/ShapeDetectorShape.java
+++ b/net/minecraft/server/ShapeDetectorShape.java
@@ -6,8 +6,12 @@
public final Vec3D velocity;
public final float yaw;
public final float pitch;
+ // CraftBukkit start
+ public final WorldServer world;
- public ShapeDetectorShape(Vec3D vec3d, Vec3D vec3d1, float f, float f1) {
+ public ShapeDetectorShape(Vec3D vec3d, Vec3D vec3d1, float f, float f1, WorldServer world) {
+ this.world = world;
+ // CraftBukkit end
this.position = vec3d;
this.velocity = vec3d1;
this.yaw = f;