Limit scale check to only scaling items

This commit is contained in:
Michael Cook (mackal) 2017-03-31 14:41:45 -04:00
parent 6b8c39d388
commit 3098b11080

View File

@ -8549,7 +8549,7 @@ void Client::Handle_OP_ItemVerifyRequest(const EQApplicationPacket *app)
(IsSilenced() && !IsDiscipline(spell_id)) ||
(IsAmnesiad() && IsDiscipline(spell_id)) ||
(IsDetrimentalSpell(spell_id) && !zone->CanDoCombat()) ||
inst->GetExp() <= 0 // charms don't have spells when less than 0
(inst->IsScaling() && inst->GetExp() <= 0) // charms don't have spells when less than 0
)
)
{