From 7408b67629386759fe36b05b6d2d43899f5a278d Mon Sep 17 00:00:00 2001 From: lee1991 Date: Wed, 15 Feb 2017 20:03:15 +0000 Subject: [PATCH] Why was we getting the player within 40f?, 12f is probly still a little to much but it works. --- 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 ab6215a83..79476d3b7 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, 40.0f, false)) + if (!me->IsWithinDist(who, 12.0f, false)) return; Player* player = who->GetCharmerOrOwnerPlayerOrPlayerItself();