diff options
author | megamage <none@none> | 2009-08-21 13:40:54 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-08-21 13:40:54 -0500 |
commit | 7ef7b7e27eb17ab956d288a301232cafb7118de9 (patch) | |
tree | b4b097cdc52c816d7b27dee7502494a89df563c0 /src | |
parent | d333cc1deb34c3444ae23ff957964c553edc0ef6 (diff) |
*Reduce the distance of auto-dismount in quest Grand Theft Palimino
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp b/src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp index 7564d6821ff..18c77be258a 100644 --- a/src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp +++ b/src/bindings/scripts/scripts/eastern_kingdoms/scarlet_enclave/chapter1.cpp @@ -598,7 +598,7 @@ struct TRINITY_DLL_DECL npc_salanar_the_horsemanAI : public ScriptedAI { ScriptedAI::MoveInLineOfSight(who); - if (who->GetTypeId() == TYPEID_UNIT && CAST_CRE(who)->isVehicle() && me->IsWithinDistInMap(who, 10.0f)) + if (who->GetTypeId() == TYPEID_UNIT && CAST_CRE(who)->isVehicle() && me->IsWithinDistInMap(who, 5.0f)) { if (Unit *charmer = who->GetCharmer()) { |