Whitespace cleanup

This commit is contained in:
Melanie
2010-01-11 02:04:05 +00:00
parent a0859754c0
commit 2320b17ca9
6 changed files with 183 additions and 183 deletions

View File

@@ -2108,13 +2108,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public LSL_Integer llRotTarget(LSL_Rotation rot, double error)
{
m_host.AddScriptLPS(1);
m_host.AddScriptLPS(1);
return m_host.registerRotTargetWaypoint(new Quaternion((float)rot.x, (float)rot.y, (float)rot.z, (float)rot.s), (float)error);
}
public void llRotTargetRemove(int number)
{
m_host.AddScriptLPS(1);
m_host.AddScriptLPS(1);
m_host.unregisterRotTargetWaypoint(number);
}