aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs3
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs3
2 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index c2f8e96..9d05526 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -1807,7 +1807,8 @@ namespace OpenSim.Region.ScriptEngine.Common
1807 public void llTriggerSound(string sound, double volume) 1807 public void llTriggerSound(string sound, double volume)
1808 { 1808 {
1809 m_host.AddScriptLPS(1); 1809 m_host.AddScriptLPS(1);
1810 m_host.SendSound(sound, volume, true, 0); 1810 // send the sound, once, to all clients in range
1811 m_host.SendSound(KeyOrName(sound).ToString(), volume, false, 0);
1811 } 1812 }
1812 1813
1813 // Xantor 20080528: Clear prim data of sound instead 1814 // Xantor 20080528: Clear prim data of sound instead
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 0cd5954..e0614da 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -1659,7 +1659,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
1659 public void llTriggerSound(string sound, double volume) 1659 public void llTriggerSound(string sound, double volume)
1660 { 1660 {
1661 m_host.AddScriptLPS(1); 1661 m_host.AddScriptLPS(1);
1662 m_host.SendSound(sound, volume, true, 0); 1662 // send the sound, once, to all clients in range
1663 m_host.SendSound(KeyOrName(sound).ToString(), volume, false, 0);
1663 } 1664 }
1664 1665
1665 // Xantor 20080528: Clear prim data of sound instead 1666 // Xantor 20080528: Clear prim data of sound instead