From 768704187cb3b7472b2e2e0923b4ae6629b2843e Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Sat, 20 Feb 2021 23:47:35 +0100 Subject: [PATCH] Scripts/TotFW: fixed an edge case in which Rohash wouldn't cast his Storm Shield on heroic difficulty when his energy went above 30 between the checks --- .../Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 287389235b7..e25baaaf2d9 100644 --- a/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp +++ b/src/server/scripts/Kalimdor/ThroneOfTheFourWinds/boss_conclave_of_wind.cpp @@ -915,7 +915,7 @@ struct boss_rohash : public BossAI events.Repeat(2s + 100ms); break; case EVENT_STORM_SHIELD: - if (me->GetPower(POWER_MANA) == 30) + if (me->GetPower(POWER_MANA) >= 30) { me->SendPlaySpellVisualKit(SPELL_VISUAL_STORM_SHIELD, 0, 0); DoCastSelf(SPELL_STORM_SHIELD);