From 4c9dd9197df6b2e68ac4b98aacab8f5ce75cd28d Mon Sep 17 00:00:00 2001 From: Inifield Date: Sun, 2 Jul 2017 15:39:06 +0200 Subject: [PATCH] Core/Scripts: Adjust dalaran mageguards range Resolve #473 I get better result with 5.0f --- src/scripts/Northrend/zone_dalaran.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/Northrend/zone_dalaran.cpp b/src/scripts/Northrend/zone_dalaran.cpp index 79476d3b7..f89c35de4 100644 --- a/src/scripts/Northrend/zone_dalaran.cpp +++ b/src/scripts/Northrend/zone_dalaran.cpp @@ -446,7 +446,7 @@ public: if (!who || !who->IsInWorld() || who->GetZoneId() != 4395) return; - if (!me->IsWithinDist(who, 12.0f, false)) + if (!me->IsWithinDist(who, 5.0f, false)) return; Player* player = who->GetCharmerOrOwnerPlayerOrPlayerItself();