Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Scripts: Fixed spell casts for cleanse.
Browse files Browse the repository at this point in the history
  • Loading branch information
AriDEV3 committed Nov 15, 2023
1 parent 5dc0653 commit d27f11e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/scripts/Kalimdor/zone_teldrassil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ class npc_tarindrella : public CreatureScript
{
if (me->HasAura(6751) || me->HasAura(11918))
{
DoCast(me, SPELL_ENTANGLING_ROOTS);
DoCast(me, SPELL_CLEANSE_SPIRIT);
events.ScheduleEvent(EVENT_CLEANSE_SPIRIT, 10000);
}
else if (me->GetOwner()->HasAura(6751) || me->GetOwner()->HasAura(11918))
{
DoCast(me->GetOwner(), SPELL_ENTANGLING_ROOTS);
DoCast(me->GetOwner(), SPELL_CLEANSE_SPIRIT);
events.ScheduleEvent(EVENT_CLEANSE_SPIRIT, 10000);
}
else
Expand Down

0 comments on commit d27f11e

Please sign in to comment.