diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index 5ef14bf..b61aed5 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -590,6 +590,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
590 | protected internal void HandleObjectGroupUpdate( | 590 | protected internal void HandleObjectGroupUpdate( |
591 | IClientAPI remoteClient, UUID GroupID, uint objectLocalID, UUID Garbage) | 591 | IClientAPI remoteClient, UUID GroupID, uint objectLocalID, UUID Garbage) |
592 | { | 592 | { |
593 | if (!remoteClient.IsGroupMember(GroupID)) | ||
594 | return; | ||
595 | |||
593 | SceneObjectGroup group = GetGroupByPrim(objectLocalID); | 596 | SceneObjectGroup group = GetGroupByPrim(objectLocalID); |
594 | if (group != null) | 597 | if (group != null) |
595 | { | 598 | { |