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 commit0.7.2-post-fixes
parent
4be42b3f75
commit
3c9654d5d6
|
@ -1960,7 +1960,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
|
|
||||||
if (autopilot)
|
if (autopilot)
|
||||||
{
|
{
|
||||||
if (Util.GetDistanceTo(AbsolutePosition, pos) < 4.5)
|
if (Util.GetDistanceTo(AbsolutePosition, pos) <= 10)
|
||||||
{
|
{
|
||||||
autopilot = false;
|
autopilot = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue