diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 3a79376028..3d8aad733c 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs @@ -224,7 +224,7 @@ namespace OpenSim.Region.Framework.Scenes return true; if (!land.LandData.GroupAVSounds) return false; - return land.LandData.GroupID == ControllingClient.ActiveGroupId; + return ControllingClient.IsGroupMember(land.LandData.GroupID); } } catch