mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/GabsPuNs-MinecraftConsoles.git
synced 2026-07-09 21:58:45 +00:00
Use BYTE Win Typedef instead of byte typedef from Minecraft.World
This commit is contained in:
@@ -49,7 +49,7 @@ void HopperTileEntity::save(CompoundTag *base)
|
||||
if (items[i] != nullptr)
|
||||
{
|
||||
CompoundTag *tag = new CompoundTag();
|
||||
tag->putByte(L"Slot", static_cast<byte>(i));
|
||||
tag->putByte(L"Slot", static_cast<BYTE>(i));
|
||||
items[i]->save(tag);
|
||||
listTag->add(tag);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user