fix parcel Avatar Sounds using group membership not active group

LSLKeyTest
UbitUmarov 2016-08-05 15:57:30 +01:00
parent efb60b5b42
commit e9660d5d05
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ namespace OpenSim.Region.Framework.Scenes
return true; return true;
if (!land.LandData.GroupAVSounds) if (!land.LandData.GroupAVSounds)
return false; return false;
return land.LandData.GroupID == ControllingClient.ActiveGroupId; return ControllingClient.IsGroupMember(land.LandData.GroupID);
} }
} }
catch catch