Scripts/Molten Core: Remove a redundant health-check in majordomo executus script.

Thanks to Lopin for pointing out.
This commit is contained in:
Machiavelli
2011-01-06 20:59:58 +01:00
parent dfc44856d1
commit f832990678

View File

@@ -150,11 +150,8 @@ public:
}
//Cast Ageis if less than 50% hp
if (me->GetHealth()*100 / me->GetMaxHealth() < 50)
if (HealthBelowPct(50))
{
DoCast(me, SPELL_AEGIS);
}
if (MagicReflection_Timer <= diff)
{