diff options
| author | Inifield <Kaiosown@gmail.com> | 2017-07-02 15:39:06 +0200 |
|---|---|---|
| committer | Inifield <Kaiosown@gmail.com> | 2017-07-02 15:39:06 +0200 |
| commit | 4c9dd9197df6b2e68ac4b98aacab8f5ce75cd28d (patch) | |
| tree | 73eb6e98acc915735ebdae7ed3d9d221287b3738 | |
| parent | 45f74604c3977e013bd654e1df980699c04d055a (diff) | |
Core/Scripts: Adjust dalaran mageguards range
Resolve #473 I get better result with 5.0f
| -rw-r--r-- | src/scripts/Northrend/zone_dalaran.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/Northrend/zone_dalaran.cpp b/src/scripts/Northrend/zone_dalaran.cpp index 79476d3b74..f89c35de47 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(); |
