Integer instead of Short for protocol version.

This commit is contained in:
MobiusDevelopment
2020-10-08 21:27:02 +00:00
parent 1128c20435
commit 1257ce7ac4
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ public class ProtocolVersion extends GameClientPacket
@Override
protected void readImpl()
{
_version = readH();
_version = readD();
}
@Override