Bump warp sit distance up to 10 meters, as discussed on opensim-dev mailing list last week.

This means that if the avatar is within 10 meters of the selected target, it sits on it immediately without walking.
Existing autopilot outside this range will be disabled in a later commit
0.7.2-post-fixes
Justin Clark-Casey (justincc) 2011-11-11 19:59:12 +00:00
parent 4be42b3f75
commit 3c9654d5d6
1 changed files with 1 additions and 1 deletions

View File

@ -1960,7 +1960,7 @@ namespace OpenSim.Region.Framework.Scenes
if (autopilot)
{
if (Util.GetDistanceTo(AbsolutePosition, pos) < 4.5)
if (Util.GetDistanceTo(AbsolutePosition, pos) <= 10)
{
autopilot = false;