Removed debug messages

This commit is contained in:
LOOHP 2021-12-01 01:03:43 +00:00
parent 97a2bca9c9
commit abc5a83b48
2 changed files with 1 additions and 3 deletions

View File

@ -5,7 +5,7 @@
<groupId>com.loohp</groupId>
<artifactId>Limbo</artifactId>
<name>Limbo</name>
<version>0.6.5-ALPHA</version>
<version>0.6.6-ALPHA</version>
<description>Standalone Limbo Minecraft Server.</description>
<url>https://github.com/LOOHP/Limbo</url>

View File

@ -250,8 +250,6 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut {
output.writeByte((x << 4) | z);
output.writeShort(y);
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.writeCompoundTag(output, each);
}