mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 02:17:00 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -19,7 +19,7 @@ void ClientCommandPacket::read(DataInputStream *dis)
|
||||
|
||||
void ClientCommandPacket::write(DataOutputStream *dos)
|
||||
{
|
||||
dos->writeByte((byte)action & (byte)0xff);
|
||||
dos->writeByte((uint8_t)action & (uint8_t)0xff);
|
||||
}
|
||||
|
||||
void ClientCommandPacket::handle(PacketListener *listener)
|
||||
|
||||
Reference in New Issue
Block a user