mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-25 15:56:28 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -42,7 +42,7 @@ void ComplexItemDataPacket::write(DataOutputStream *dos) //throws IOException
|
||||
dos->writeShort(itemId);
|
||||
dos->writeShort(data.length);
|
||||
|
||||
byteArray ba( (byte*)data.data, data.length );
|
||||
byteArray ba( (uint8_t*)data.data, data.length );
|
||||
dos->write(ba);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user