* And a little more

GenericGridServerConcept
Adam Frisby 2009-02-22 10:21:41 +00:00
parent fc66d29ca6
commit 88d3ce5c64
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}