Remove VarIntArray because I cannot read wiki's correctly xD

This commit is contained in:
Bas950 2020-06-29 16:16:22 +02:00
parent 424eab29dd
commit 627ad5aaf1
2 changed files with 2 additions and 23 deletions

View file

@ -225,7 +225,7 @@ namespace MinecraftClient.Protocol.Handlers
if (protocolversion >= MC116Version)
dataTypes.ReadNextVarInt(packetData); // World Count - 1.16 and above
if (protocolversion >= MC116Version)
dataTypes.ReadNextVarIntArray(packetData); // World Names - 1.16 and above
dataTypes.ReadNextString(packetData); // World Names - 1.16 and above
if (protocolversion >= MC116Version)
dataTypes.ReadNextNbt(packetData); // Dimension Codec - 1.16 and above
if (protocolversion >= MC191Version)
@ -241,7 +241,7 @@ namespace MinecraftClient.Protocol.Handlers
if (protocolversion >= MC115Version)
dataTypes.ReadNextLong(packetData); // Hashed world seed - 1.15 and above
dataTypes.ReadNextByte(packetData); // Max Players
dataTypes.ReadNextByte(packetData); // Max Players
if (protocolversion < MC116Version)
dataTypes.ReadNextString(packetData); // Level Type - 1.15 and below