diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs index 5a7dda5..efd682f 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | |||
@@ -516,6 +516,20 @@ namespace OpenSim.Region.Environment.Scenes | |||
516 | public virtual void ProcessObjectGrab(uint localID, LLVector3 offsetPos, IClientAPI remoteClient) | 516 | public virtual void ProcessObjectGrab(uint localID, LLVector3 offsetPos, IClientAPI remoteClient) |
517 | { | 517 | { |
518 | EventManager.TriggerObjectGrab(localID, offsetPos, remoteClient); | 518 | EventManager.TriggerObjectGrab(localID, offsetPos, remoteClient); |
519 | |||
520 | foreach (EntityBase ent in Entities.Values) | ||
521 | { | ||
522 | if (ent is SceneObjectGroup) | ||
523 | { | ||
524 | SceneObjectGroup obj = ent as SceneObjectGroup; | ||
525 | |||
526 | if( obj.HasChildPrim( localID ) ) | ||
527 | { | ||
528 | obj.ObjectGrabHandler(localID, offsetPos, remoteClient); | ||
529 | return; | ||
530 | } | ||
531 | } | ||
532 | } | ||
519 | } | 533 | } |
520 | } | 534 | } |
521 | } \ No newline at end of file | 535 | } \ No newline at end of file |