osGetAvatarList: Use AbsolutePosition instead of the position of the physics actor, or the avatar disappears when they sit down.

avinationmerge
Tom Grimshaw 2010-06-14 04:03:54 -07:00
parent fdf648bcf3
commit 704da8c823
1 changed files with 3 additions and 6 deletions

View File

@ -2221,15 +2221,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
if (avatar != null && avatar.UUID != m_host.OwnerID)
{
if (avatar.IsChildAgent == false)
{
if (avatar.PhysicsActor != null && avatar.PhysicsActor.Position != null)
{
result.Add(avatar.UUID);
result.Add(avatar.PhysicsActor.Position);
result.Add(avatar.AbsolutePosition);
result.Add(avatar.Name);
}
}
}
});
return result;
}