aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorSignpostMarv2012-08-18 14:54:13 +0100
committerMelanie2012-08-18 18:29:59 +0100
commit52d7af05bcc5141eef42115e0ac5bca53163717f (patch)
tree4de8969e76b35e2e099be0c3cc70fcdf9ec44101 /OpenSim/Region
parentImplementing operators & constructors for Quaternion (diff)
downloadopensim-SC_OLD-52d7af05bcc5141eef42115e0ac5bca53163717f.zip
opensim-SC_OLD-52d7af05bcc5141eef42115e0ac5bca53163717f.tar.gz
opensim-SC_OLD-52d7af05bcc5141eef42115e0ac5bca53163717f.tar.bz2
opensim-SC_OLD-52d7af05bcc5141eef42115e0ac5bca53163717f.tar.xz
adding missing refactor for LSL_Vector
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 7671e54..4d542d50 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -10536,7 +10536,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
10536 } 10536 }
10537 break; 10537 break;
10538 case ScriptBaseClass.OBJECT_VELOCITY: 10538 case ScriptBaseClass.OBJECT_VELOCITY:
10539 ret.Add(new LSL_Vector(obj.Velocity.X, obj.Velocity.Y, obj.Velocity.Z)); 10539 ret.Add(new LSL_Vector(obj.Velocity));
10540 break; 10540 break;
10541 case ScriptBaseClass.OBJECT_OWNER: 10541 case ScriptBaseClass.OBJECT_OWNER:
10542 ret.Add(new LSL_String(obj.OwnerID.ToString())); 10542 ret.Add(new LSL_String(obj.OwnerID.ToString()));