fix(Scripts/RazorfenDowns): prevent Belnistrasz evade during channeling (#25431)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Andrew 2026-04-11 20:14:35 -03:00 committed by GitHub
parent dce82d7105
commit 06e3ef3ae8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -100,6 +100,16 @@ public:
}
}
void JustExitedCombat() override
{
if (channeling)
{
EngagementOver();
return;
}
CreatureAI::JustExitedCombat();
}
void JustEngagedWith(Unit* who) override
{
if (channeling)