mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-02 11:55:13 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -28,7 +28,7 @@ void AnimatePacket::read(DataInputStream *dis) //throws IOException
|
||||
void AnimatePacket::write(DataOutputStream *dos) //throws IOException
|
||||
{
|
||||
dos->writeInt(id);
|
||||
dos->writeByte(static_cast<byte>(action));
|
||||
dos->writeByte(static_cast<uint8_t>(action));
|
||||
}
|
||||
|
||||
void AnimatePacket::handle(PacketListener *listener)
|
||||
|
||||
Reference in New Issue
Block a user