From 8cb3787de86a21afc3c020f934cdcc02edac5799 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 26 Jun 2016 09:40:05 +0100 Subject: [PATCH] mantis 7942: allow llTriggerSound on HUDs to send sounds to all. --- OpenSim/Region/CoreModules/World/Sound/SoundModule.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs b/OpenSim/Region/CoreModules/World/Sound/SoundModule.cs index 9c99c19255..a8cb5cc300 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 if (!ssp.ParcelAllowThisAvatarSounds) return; +/* mantis 7942: coment out to allow trigger in HUDs to send sounds to all if (grp.HasPrivateAttachmentPoint) { ssp.ControllingClient.SendTriggeredSound(soundId, ownerID, @@ -194,6 +195,7 @@ namespace OpenSim.Region.CoreModules.World.Sound (float)gain); return; } +*/ } }