mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 10:25:32 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -39,9 +39,9 @@ void EntityActionAtPositionPacket::read(DataInputStream *dis) //throws IOExcepti
|
||||
void EntityActionAtPositionPacket::write(DataOutputStream *dos) //throws IOException
|
||||
{
|
||||
dos->writeInt(id);
|
||||
dos->writeByte((byte)action);
|
||||
dos->writeByte((uint8_t)action);
|
||||
dos->writeInt(x);
|
||||
dos->writeByte((byte)y);
|
||||
dos->writeByte((uint8_t)y);
|
||||
dos->writeInt(z);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user