mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 13:54:57 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -41,7 +41,7 @@ void ContainerSetContentPacket::read(DataInputStream *dis) //throws IOException
|
||||
|
||||
void ContainerSetContentPacket::write(DataOutputStream *dos) //throws IOException
|
||||
{
|
||||
dos->writeByte((byte)containerId);
|
||||
dos->writeByte((uint8_t)containerId);
|
||||
dos->writeShort(items.length);
|
||||
for (unsigned int i = 0; i < items.length; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user