From 88d3ce5c64204f53012b5ccd22e93e8e040b9ab1 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Sun, 22 Feb 2009 10:21:41 +0000 Subject: [PATCH] * And a little more --- OpenSim/Client/MXP/ClientStack/MXPClientView.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs index d70131e708..ccf3a1ba31 100644 --- a/OpenSim/Client/MXP/ClientStack/MXPClientView.cs +++ b/OpenSim/Client/MXP/ClientStack/MXPClientView.cs @@ -586,8 +586,8 @@ namespace OpenSim.Client.MXP.ClientStack { MovementEventMessage me = new MovementEventMessage(); me.ObjectIndex = localID; - me.Location = new[] {position.X, position.Y, position.Z}; - me.Orientation = new[] {rotation.X, rotation.Y, rotation.Z, rotation.W}; + me.Location = new float[] {position.X, position.Y, position.Z}; + me.Orientation = new float[] {rotation.X, rotation.Y, rotation.Z, rotation.W}; Session.Send(me); }