mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 02:46:33 +01:00
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
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user