Thanks Lex! Closes #319
This commit is contained in:
parent
539fccb873
commit
9f3359f8fa
@ -269,7 +269,8 @@ public class ServerConnector extends PacketHandler
|
||||
{
|
||||
ByteArrayDataInput in = ByteStreams.newDataInput( pluginMessage.data );
|
||||
in.readUnsignedByte();
|
||||
for ( int i = 0; i < in.readInt(); i++ )
|
||||
int count = in.readInt();
|
||||
for ( int i = 0; i < count; i++ )
|
||||
{
|
||||
in.readUTF();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user