Skip to content

Commit 06e3ef3

Browse files
Nyeriahclaude
andauthored
fix(Scripts/RazorfenDowns): prevent Belnistrasz evade during channeling (azerothcore#25431)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent dce82d7 commit 06e3ef3

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/server/scripts/Kalimdor/RazorfenDowns/razorfen_downs.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,16 @@ class npc_belnistrasz : public CreatureScript
100100
}
101101
}
102102

103+
void JustExitedCombat() override
104+
{
105+
if (channeling)
106+
{
107+
EngagementOver();
108+
return;
109+
}
110+
CreatureAI::JustExitedCombat();
111+
}
112+
103113
void JustEngagedWith(Unit* who) override
104114
{
105115
if (channeling)

0 commit comments

Comments
 (0)