diff --git a/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp b/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp index 8d130cee8be..d97ef29eb11 100644 --- a/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp +++ b/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp @@ -1213,7 +1213,7 @@ class spell_conclave_of_wind_toxic_spores : public SpellScript void HandleCast(SpellEffIndex effIndex) { PreventHitDefaultEffect(effIndex); - GetHitUnit()->CastSpell(GetHitUnit(), GetSpellInfo()->Effects[effIndex].TriggerSpell, false); + GetHitUnit()->CastSpell(GetHitUnit(), GetSpellInfo()->Effects[effIndex].TriggerSpell); } void Register() override diff --git a/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/instance_throne_of_the_four_winds.cpp b/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/instance_throne_of_the_four_winds.cpp index faebef2c018..95cbb82bce0 100644 --- a/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/instance_throne_of_the_four_winds.cpp +++ b/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/instance_throne_of_the_four_winds.cpp @@ -139,9 +139,9 @@ class instance_throne_of_the_four_winds : public InstanceMapScript { if (GameObject* effect1 = GetGameObject(DATA_SKYWALL_DJIN_TORNADO)) effect1->SetGoState(GO_STATE_READY); - if (GameObject* effect2 = GetGameObject(DATA_SKYWALL_DJIN_TORNADO)) + if (GameObject* effect2 = GetGameObject(DATA_SKYWALL_DJIN_FROST)) effect2->SetGoState(GO_STATE_READY); - if (GameObject* effect3 = GetGameObject(DATA_SKYWALL_DJIN_TORNADO)) + if (GameObject* effect3 = GetGameObject(DATA_SKYWALL_DJIN_HEALING)) effect3->SetGoState(GO_STATE_READY); events.CancelEvent(EVENT_ENERGIZE);