diff --git a/zone/attack.cpp b/zone/attack.cpp index da0504902..8689f9b85 100644 --- a/zone/attack.cpp +++ b/zone/attack.cpp @@ -983,9 +983,11 @@ int Mob::GetWeaponDamage(Mob *against, const ItemInst *weapon_item, uint32 *hate } else{ bool MagicGloves=false; - ItemInst *gloves=CastToClient()->GetInv().GetItem(MainHands); - if (gloves != nullptr) { - MagicGloves = gloves->GetItem()->Magic; + if (IsClient()) { + ItemInst *gloves=CastToClient()->GetInv().GetItem(MainHands); + if (gloves != nullptr) { + MagicGloves = gloves->GetItem()->Magic; + } } if((GetClass() == MONK || GetClass() == BEASTLORD)) {