diff options
Diffstat (limited to 'OpenSim/Client/MXP/ClientStack/MXPClientView.cs')
-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 | } |