refactoring llGetPos() to take advantage of implicit converter

integration
SignpostMarv 2012-10-16 12:48:41 +01:00 committed by Justin Clark-Casey (justincc)
parent f9923d4423
commit af9dc483e9
1 changed files with 1 additions and 2 deletions

View File

@ -2082,8 +2082,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public LSL_Vector llGetPos()
{
m_host.AddScriptLPS(1);
Vector3 pos = m_host.GetWorldPosition();
return new LSL_Vector(pos.X, pos.Y, pos.Z);
return m_host.GetWorldPosition();
}
public LSL_Vector llGetLocalPos()