diff options
author | Adam Frisby | 2009-02-22 10:21:41 +0000 |
---|---|---|
committer | Adam Frisby | 2009-02-22 10:21:41 +0000 |
commit | 88d3ce5c64204f53012b5ccd22e93e8e040b9ab1 (patch) | |
tree | 3e689eeb6eb91101fb11e62a7dde9eff883f5c6b /OpenSim/Client/MXP | |
parent | * Removing some C#3.0 that snuck in. (diff) | |
download | opensim-SC_OLD-88d3ce5c64204f53012b5ccd22e93e8e040b9ab1.zip opensim-SC_OLD-88d3ce5c64204f53012b5ccd22e93e8e040b9ab1.tar.gz opensim-SC_OLD-88d3ce5c64204f53012b5ccd22e93e8e040b9ab1.tar.bz2 opensim-SC_OLD-88d3ce5c64204f53012b5ccd22e93e8e040b9ab1.tar.xz |
* And a little more
Diffstat (limited to 'OpenSim/Client/MXP')
-rw-r--r-- | OpenSim/Client/MXP/ClientStack/MXPClientView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs index d70131e..ccf3a1b 100644 --- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs +++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs | |||
@@ -586,8 +586,8 @@ namespace OpenSim.Client.MXP.ClientStack | |||
586 | { | 586 | { |
587 | MovementEventMessage me = new MovementEventMessage(); | 587 | MovementEventMessage me = new MovementEventMessage(); |
588 | me.ObjectIndex = localID; | 588 | me.ObjectIndex = localID; |
589 | me.Location = new[] {position.X, position.Y, position.Z}; | 589 | me.Location = new float[] {position.X, position.Y, position.Z}; |
590 | me.Orientation = new[] {rotation.X, rotation.Y, rotation.Z, rotation.W}; | 590 | me.Orientation = new float[] {rotation.X, rotation.Y, rotation.Z, rotation.W}; |
591 | 591 | ||
592 | Session.Send(me); | 592 | Session.Send(me); |
593 | } | 593 | } |