Fix typo in unused readUnsignedByte method of MinecraftProtocol

This commit is contained in:
md_5 2014-06-20 19:26:34 +10:00
parent b167a45690
commit 151344aaff

View File

@ -14,7 +14,7 @@ public class MinecraftInput
return buf.readByte();
}
public short readUnisgnedByte()
public short readUnsignedByte()
{
return buf.readUnsignedByte();
}