mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 13:54:57 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -50,9 +50,9 @@ void ContainerClickPacket::read(DataInputStream *dis) //throws IOException
|
||||
|
||||
void ContainerClickPacket::write(DataOutputStream *dos) // throws IOException
|
||||
{
|
||||
dos->writeByte((byte)containerId);
|
||||
dos->writeByte((uint8_t)containerId);
|
||||
dos->writeShort(slotNum);
|
||||
dos->writeByte((byte)buttonNum);
|
||||
dos->writeByte((uint8_t)buttonNum);
|
||||
dos->writeShort(uid);
|
||||
dos->writeBoolean(quickKey);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user