aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneGraph.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
index 28b80bb..a79dc98 100644
--- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs
@@ -544,6 +544,9 @@ namespace OpenSim.Region.Framework.Scenes
544 protected internal void HandleObjectGroupUpdate( 544 protected internal void HandleObjectGroupUpdate(
545 IClientAPI remoteClient, UUID GroupID, uint objectLocalID, UUID Garbage) 545 IClientAPI remoteClient, UUID GroupID, uint objectLocalID, UUID Garbage)
546 { 546 {
547 if (!remoteClient.IsGroupMember(GroupID))
548 return;
549
547 SceneObjectGroup group = GetGroupByPrim(objectLocalID); 550 SceneObjectGroup group = GetGroupByPrim(objectLocalID);
548 if (group != null) 551 if (group != null)
549 { 552 {