Scripts/Icecrown Citadel: Stinky should only have his damage aura in combat

Closes #3519
This commit is contained in:
Shauren
2011-10-15 19:47:09 +02:00
parent 97e5140a1d
commit 96cf810ca2

View File

@@ -291,6 +291,10 @@ class npc_stinky_icc : public CreatureScript
_events.Reset();
_events.ScheduleEvent(EVENT_DECIMATE, urand(20000, 25000));
_events.ScheduleEvent(EVENT_MORTAL_WOUND, urand(3000, 7000));
}
void EnterCombat(Unit* /*target*/)
{
DoCast(me, SPELL_PLAGUE_STENCH);
}