aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-08-03 22:11:05 +0100
committerJustin Clark-Casey (justincc)2011-08-03 22:11:05 +0100
commit2964467708871f5932c46ad04e002a5506dd7732 (patch)
tree07c49c8977d582dc9721c7f401aa140766b362cf /OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs
parentenable the NPC module for its regression test (diff)
downloadopensim-SC_OLD-2964467708871f5932c46ad04e002a5506dd7732.zip
opensim-SC_OLD-2964467708871f5932c46ad04e002a5506dd7732.tar.gz
opensim-SC_OLD-2964467708871f5932c46ad04e002a5506dd7732.tar.bz2
opensim-SC_OLD-2964467708871f5932c46ad04e002a5506dd7732.tar.xz
get rid of vestigal move to parameters
Diffstat (limited to '')
-rw-r--r--OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs
index 6ec11ef..e2f327b 100644
--- a/OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs
+++ b/OpenSim/ApplicationPlugins/Rest/Inventory/tests/Remote.cs
@@ -168,8 +168,8 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory.Tests
168 float x = Convert.ToSingle(rdata.Parameters[PARM_MOVE_X]); 168 float x = Convert.ToSingle(rdata.Parameters[PARM_MOVE_X]);
169 float y = Convert.ToSingle(rdata.Parameters[PARM_MOVE_Y]); 169 float y = Convert.ToSingle(rdata.Parameters[PARM_MOVE_Y]);
170 float z = Convert.ToSingle(rdata.Parameters[PARM_MOVE_Z]); 170 float z = Convert.ToSingle(rdata.Parameters[PARM_MOVE_Z]);
171 Vector3 vector = new Vector3(x,y,z); 171 Vector3 vector = new Vector3(x, y, z);
172 presence.DoMoveToPosition(0, vector, presence.ControllingClient); 172 presence.DoMoveToPosition(vector);
173 } 173 }
174 catch (Exception e) 174 catch (Exception e)
175 { 175 {