aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules
diff options
context:
space:
mode:
authorUbitUmarov2016-06-26 09:40:05 +0100
committerUbitUmarov2016-06-26 09:40:05 +0100
commit8cb3787de86a21afc3c020f934cdcc02edac5799 (patch)
treed43264a6bc7322bd554d77dea9acb72946b16690 /OpenSim/Region/CoreModules
parentAdded a test for checking permissions in inventory items that are transferred... (diff)
downloadopensim-SC_OLD-8cb3787de86a21afc3c020f934cdcc02edac5799.zip
opensim-SC_OLD-8cb3787de86a21afc3c020f934cdcc02edac5799.tar.gz
opensim-SC_OLD-8cb3787de86a21afc3c020f934cdcc02edac5799.tar.bz2
opensim-SC_OLD-8cb3787de86a21afc3c020f934cdcc02edac5799.tar.xz
mantis 7942: allow llTriggerSound on HUDs to send sounds to all.
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r--OpenSim/Region/CoreModules/World/Sound/SoundModule.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs b/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs
index 9c99c19..a8cb5cc 100644
--- a/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs
+++ b/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs
@@ -187,6 +187,7 @@ namespace OpenSim.Region.CoreModules.World.Sound
187 if (!ssp.ParcelAllowThisAvatarSounds) 187 if (!ssp.ParcelAllowThisAvatarSounds)
188 return; 188 return;
189 189
190/* mantis 7942: coment out to allow trigger in HUDs to send sounds to all
190 if (grp.HasPrivateAttachmentPoint) 191 if (grp.HasPrivateAttachmentPoint)
191 { 192 {
192 ssp.ControllingClient.SendTriggeredSound(soundId, ownerID, 193 ssp.ControllingClient.SendTriggeredSound(soundId, ownerID,
@@ -194,6 +195,7 @@ namespace OpenSim.Region.CoreModules.World.Sound
194 (float)gain); 195 (float)gain);
195 return; 196 return;
196 } 197 }
198*/
197 } 199 }
198 } 200 }
199 201