mirror of https://github.com/LOOHP/Limbo.git
Removed debug messages
This commit is contained in:
parent
97a2bca9c9
commit
abc5a83b48
2
pom.xml
2
pom.xml
|
|
@ -5,7 +5,7 @@
|
||||||
<groupId>com.loohp</groupId>
|
<groupId>com.loohp</groupId>
|
||||||
<artifactId>Limbo</artifactId>
|
<artifactId>Limbo</artifactId>
|
||||||
<name>Limbo</name>
|
<name>Limbo</name>
|
||||||
<version>0.6.5-ALPHA</version>
|
<version>0.6.6-ALPHA</version>
|
||||||
|
|
||||||
<description>Standalone Limbo Minecraft Server.</description>
|
<description>Standalone Limbo Minecraft Server.</description>
|
||||||
<url>https://github.com/LOOHP/Limbo</url>
|
<url>https://github.com/LOOHP/Limbo</url>
|
||||||
|
|
|
||||||
|
|
@ -250,8 +250,6 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut {
|
||||||
output.writeByte((x << 4) | z);
|
output.writeByte((x << 4) | z);
|
||||||
output.writeShort(y);
|
output.writeShort(y);
|
||||||
Integer id = Registry.BLOCK_ENTITY_TYPE.getId(new NamespacedKey(chunk.getBlockStateAt(x, y, z).getString("Name")));
|
Integer id = Registry.BLOCK_ENTITY_TYPE.getId(new NamespacedKey(chunk.getBlockStateAt(x, y, z).getString("Name")));
|
||||||
System.out.println(chunk.getBlockStateAt(x, y, z).toString());
|
|
||||||
System.out.println(each.toString());
|
|
||||||
DataTypeIO.writeVarInt(output, id == null ? -1 : id);
|
DataTypeIO.writeVarInt(output, id == null ? -1 : id);
|
||||||
DataTypeIO.writeCompoundTag(output, each);
|
DataTypeIO.writeCompoundTag(output, each);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue