This commit is contained in:
KayenEQ
2014-02-15 08:16:41 -05:00
parent 5344679c7c
commit 49df0a5d33
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4344,7 +4344,7 @@ bool Mob::TryReflectSpell(uint32 spell_id)
int chance = itembonuses.reflect_chance + spellbonuses.reflect_chance + aabonuses.reflect_chance;
if(MakeRandomInt(0, 99) < (GetTarget()->itembonuses.reflect_chance + GetTarget()->spellbonuses.reflect_chance))
if(chance && MakeRandomInt(0, 99) < chance)
return true;
return false;