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>
|
||||
<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>
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue