From 42cde6286fcf2ac3c0c3d6ac61f5cf96078724be Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Sun, 25 Feb 2024 17:46:06 -0300 Subject: [PATCH] fix(Scripts/TheEye): Fix Capernian not casting if at max range (#18402) --- src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp index c284c3b8c..64e5d7935 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp @@ -871,7 +871,7 @@ struct npc_capernian : public ScriptedAI { if (me->Attack(who, false)) { - me->GetMotionMaster()->MoveChase(who, 45.0f, 0); + me->GetMotionMaster()->MoveChase(who, 30.0f, 0); me->AddThreat(who, 0.0f); } } @@ -891,7 +891,7 @@ struct npc_capernian : public ScriptedAI } else { - me->GetMotionMaster()->MoveChase(me->GetVictim(), 45.0f); + me->GetMotionMaster()->MoveChase(me->GetVictim(), 30.0f); DoCastVictim(SPELL_CAPERNIAN_FIREBALL); }