From ef396877ae68e6f71638b1da961a295131feb8da Mon Sep 17 00:00:00 2001 From: Shauren Date: Fri, 1 Jul 2016 20:26:49 +0200 Subject: Core/Spells: Fixed spell range check Closes #17060 (cherry picked from commit e6a52d4aae9e8facc46c3b05e0560d540a928d73) --- src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server/scripts/EasternKingdoms') diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp index b87c836c2a4..84ee5cd97db 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp @@ -298,7 +298,7 @@ public: if (Blind_Timer <= diff) { std::list targets; - SelectTargetList(targets, 5, SELECT_TARGET_RANDOM, me->GetMeleeReach()*5, true); + SelectTargetList(targets, 5, SELECT_TARGET_RANDOM, me->GetCombatReach()*5, true); for (std::list::const_iterator i = targets.begin(); i != targets.end(); ++i) if (!me->IsWithinMeleeRange(*i)) { -- cgit v1.2.3