summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/scripts/EasternKingdoms/ZulAman/boss_nalorakk.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_nalorakk.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_nalorakk.cpp
index 6adadef997..9ccb3696a4 100644
--- a/src/server/scripts/EasternKingdoms/ZulAman/boss_nalorakk.cpp
+++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_nalorakk.cpp
@@ -242,6 +242,9 @@ struct boss_nalorakk : public BossAI
Talk(SAY_SHIFTEDTOTROLL);
scheduler.CancelGroup(GROUP_BEAR);
_bearForm = false;
+
+ me->SetCanDualWield(true);
+
scheduler.Schedule(15s, 20s, GROUP_HUMAN, [this](TaskContext context)
{
Talk(SAY_SURGE);
@@ -271,6 +274,9 @@ struct boss_nalorakk : public BossAI
DoCastSelf(SPELL_BEARFORM, true);
scheduler.CancelGroup(GROUP_HUMAN);
_bearForm = true;
+
+ me->SetCanDualWield(false);
+
scheduler.Schedule(2s, GROUP_BEAR, [this](TaskContext context)
{
DoCastVictim(SPELL_LACERATINGSLASH);