Core/Spells: fix Lightwell (in combat consume charges)

This commit is contained in:
Wilds
2011-12-10 02:01:53 +01:00
parent 8fb18de128
commit 4d689ec543

View File

@@ -2030,6 +2030,16 @@ public:
{
DoCast(me, 59907, false); // Spell for Lightwell Charges
}
void EnterEvadeMode()
{
if (!me->isAlive())
return;
me->DeleteThreatList();
me->CombatStop(true);
me->ResetPlayerDamageReq();
}
};
CreatureAI* GetAI(Creature* creature) const