mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 17:44:34 +00:00
fix: remove byte type alias
This commit is contained in:
@@ -13,7 +13,7 @@ RemoveMobEffectPacket::RemoveMobEffectPacket()
|
||||
RemoveMobEffectPacket::RemoveMobEffectPacket(int entityId, MobEffectInstance *effect)
|
||||
{
|
||||
this->entityId = entityId;
|
||||
this->effectId = (byte) (effect->getId() & 0xff);
|
||||
this->effectId = (uint8_t) (effect->getId() & 0xff);
|
||||
}
|
||||
|
||||
void RemoveMobEffectPacket::read(DataInputStream *dis)
|
||||
|
||||
Reference in New Issue
Block a user