mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/GabsPuNs-MinecraftConsoles.git
synced 2026-07-10 17:58:07 +00:00
Use BYTE Win Typedef instead of byte typedef from Minecraft.World
This commit is contained in:
@@ -270,9 +270,9 @@ void Throwable::addAdditonalSaveData(CompoundTag *tag)
|
||||
tag->putShort(L"xTile", static_cast<short>(xTile));
|
||||
tag->putShort(L"yTile", static_cast<short>(yTile));
|
||||
tag->putShort(L"zTile", static_cast<short>(zTile));
|
||||
tag->putByte(L"inTile", static_cast<byte>(lastTile));
|
||||
tag->putByte(L"shake", static_cast<byte>(shakeTime));
|
||||
tag->putByte(L"inGround", static_cast<byte>(inGround ? 1 : 0));
|
||||
tag->putByte(L"inTile", static_cast<BYTE>(lastTile));
|
||||
tag->putByte(L"shake", static_cast<BYTE>(shakeTime));
|
||||
tag->putByte(L"inGround", static_cast<BYTE>(inGround ? 1 : 0));
|
||||
|
||||
if (ownerName.empty() && (owner != nullptr) && owner->instanceof(eTYPE_PLAYER) )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user