This commit is contained in:
KayenEQ 2014-08-08 15:53:53 -04:00
parent 2aec190afc
commit b7be8fb625

View File

@ -4685,11 +4685,9 @@ void Mob::Stun(int duration)
return; return;
if(IsValidSpell(casting_spell_id) && !spells[casting_spell_id].uninterruptable) { if(IsValidSpell(casting_spell_id) && !spells[casting_spell_id].uninterruptable) {
int persistent_casting = spellbonuses.PersistantCasting + itembonuses.PersistantCasting; int persistent_casting = spellbonuses.PersistantCasting + itembonuses.PersistantCasting + aabonuses.PersistantCasting;
if(IsClient())
persistent_casting += aabonuses.PersistantCasting;
if(MakeRandomInt(1,99) > persistent_casting) if(MakeRandomInt(0,99) > persistent_casting)
InterruptSpell(); InterruptSpell();
} }