diff options
Few small fixes
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs index 4300ce4..4ea5f20 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | |||
@@ -509,7 +509,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
509 | hasPrim = ((SceneObjectGroup)ent).HasChildPrim(objectID); | 509 | hasPrim = ((SceneObjectGroup)ent).HasChildPrim(objectID); |
510 | if (hasPrim != false) | 510 | if (hasPrim != false) |
511 | { | 511 | { |
512 | ((SceneObjectGroup)ent).GrapMovement(offset, pos, remoteClient); | 512 | ((SceneObjectGroup)ent).GrabMovement(offset, pos, remoteClient); |
513 | break; | 513 | break; |
514 | } | 514 | } |
515 | } | 515 | } |
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index d3c7f77..e7f5f56 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -588,7 +588,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
588 | client.OnTeleportLocationRequest += RequestTeleportLocation; | 588 | client.OnTeleportLocationRequest += RequestTeleportLocation; |
589 | client.OnObjectSelect += SelectPrim; | 589 | client.OnObjectSelect += SelectPrim; |
590 | client.OnObjectDeselect += DeselectPrim; | 590 | client.OnObjectDeselect += DeselectPrim; |
591 | client.OnGrapUpdate += MoveObject; | 591 | client.OnGrabUpdate += MoveObject; |
592 | client.OnDeRezObject += DeRezObject; | 592 | client.OnDeRezObject += DeRezObject; |
593 | client.OnNameFromUUIDRequest += commsManager.HandleUUIDNameRequest; | 593 | client.OnNameFromUUIDRequest += commsManager.HandleUUIDNameRequest; |
594 | client.OnObjectDescription += PrimDescription; | 594 | client.OnObjectDescription += PrimDescription; |
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs index 8b761f6..39b7fb0 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs | |||
@@ -365,7 +365,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
365 | /// <param name="offset"></param> | 365 | /// <param name="offset"></param> |
366 | /// <param name="pos"></param> | 366 | /// <param name="pos"></param> |
367 | /// <param name="remoteClient"></param> | 367 | /// <param name="remoteClient"></param> |
368 | public void GrapMovement(LLVector3 offset, LLVector3 pos, IClientAPI remoteClient) | 368 | public void GrabMovement(LLVector3 offset, LLVector3 pos, IClientAPI remoteClient) |
369 | { | 369 | { |
370 | this.Pos = pos; | 370 | this.Pos = pos; |
371 | this.m_rootPart.SendTerseUpdateToAllClients(); | 371 | this.m_rootPart.SendTerseUpdateToAllClients(); |