Skip to content

Commit 4ad41d7

Browse files
committed
Scripts/Ahnkahet: missing attack start handling in Twisted Visage
1 parent 5e2030d commit 4ad41d7

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_herald_volazj.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,7 @@ struct npc_twisted_visage : public ScriptedAI
425425
ScriptedAI::AttackStartCaster(who, 25.0f);
426426
break;
427427
default:
428+
ScriptedAI::AttackStart(who);
428429
break;
429430
}
430431
break;
@@ -436,6 +437,7 @@ struct npc_twisted_visage : public ScriptedAI
436437
ScriptedAI::AttackStartCaster(who, 25.0f);
437438
break;
438439
default:
440+
ScriptedAI::AttackStart(who);
439441
break;
440442
}
441443
break;
@@ -445,9 +447,6 @@ struct npc_twisted_visage : public ScriptedAI
445447
case CLASS_WARLOCK:
446448
ScriptedAI::AttackStartCaster(who, 25.0f);
447449
break;
448-
case CLASS_ROGUE:
449-
ScriptedAI::AttackStart(who);
450-
break;
451450
default:
452451
ScriptedAI::AttackStart(who);
453452
break;

0 commit comments

Comments
 (0)