mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-27 05:44:39 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -43,8 +43,8 @@ void GameEventPacket::read(DataInputStream *dis) //throws IOException
|
||||
|
||||
void GameEventPacket::write(DataOutputStream *dos) //throws IOException
|
||||
{
|
||||
dos->writeByte((byte)_event);
|
||||
dos->writeByte((byte)param);
|
||||
dos->writeByte((uint8_t)_event);
|
||||
dos->writeByte((uint8_t)param);
|
||||
}
|
||||
|
||||
void GameEventPacket::handle(PacketListener *listener)
|
||||
|
||||
Reference in New Issue
Block a user