refactor: Use LSL_Vector(Vector3) constructor in llGetVel()

0.7.4-extended
Justin Clark-Casey (justincc) 2013-03-14 22:02:43 +00:00
parent 681b07f668
commit 99a0f76998
1 changed files with 1 additions and 1 deletions

View File

@ -2328,7 +2328,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
vel = m_host.Velocity;
}
return new LSL_Vector(vel.X, vel.Y, vel.Z);
return new LSL_Vector(vel);
}
public LSL_Vector llGetAccel()