Compile fixes (#2732)
This commit is contained in:
@@ -198,7 +198,7 @@ index 038b7b68d..9b2bafdbd 100644
|
||||
public final ChunkGenerator<?> chunkGenerator;
|
||||
private final WorldServer world;
|
||||
diff --git a/src/main/java/net/minecraft/server/MCUtil.java b/src/main/java/net/minecraft/server/MCUtil.java
|
||||
index ec3732193..23d1935dd 100644
|
||||
index d49e210a3..25a87c2d3 100644
|
||||
--- a/src/main/java/net/minecraft/server/MCUtil.java
|
||||
+++ b/src/main/java/net/minecraft/server/MCUtil.java
|
||||
@@ -0,0 +0,0 @@ import com.destroystokyo.paper.block.TargetBlockInfo;
|
||||
@@ -334,9 +334,9 @@ index ec3732193..23d1935dd 100644
|
||||
+ JsonObject playerData = new JsonObject();
|
||||
+
|
||||
+ playerData.addProperty("name", player.getName());
|
||||
+ playerData.addProperty("x", player.locX);
|
||||
+ playerData.addProperty("y", player.locY);
|
||||
+ playerData.addProperty("z", player.locZ);
|
||||
+ playerData.addProperty("x", player.locX());
|
||||
+ playerData.addProperty("y", player.locY());
|
||||
+ playerData.addProperty("z", player.locZ());
|
||||
+
|
||||
+ playersData.add(playerData);
|
||||
+
|
||||
|
||||
Reference in New Issue
Block a user