aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
authorUbitUmarov2018-04-10 07:27:10 +0100
committerUbitUmarov2018-04-10 07:27:10 +0100
commit63418349e5d8723b977d447a0fbf9d85c1490338 (patch)
tree5fb75f1ac3519bab94a49a7fa99beb5fd85d28ec /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
parent mantis 8305: add osTriggerSoundLimited(..) (diff)
downloadopensim-SC-63418349e5d8723b977d447a0fbf9d85c1490338.zip
opensim-SC-63418349e5d8723b977d447a0fbf9d85c1490338.tar.gz
opensim-SC-63418349e5d8723b977d447a0fbf9d85c1490338.tar.bz2
opensim-SC-63418349e5d8723b977d447a0fbf9d85c1490338.tar.xz
mantis 8275: fix llStopSound for llPlaySound. Code was doing as SL wiki but not as not real regions with FireStorm. Singularity will only stop loop sounds. None stops Trigger
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index cd687aa..437f772 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -5971,7 +5971,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
5971 5971
5972 #endregion PrimFlags 5972 #endregion PrimFlags
5973 5973
5974 if (part.Sound != UUID.Zero) 5974 if (part.Sound != UUID.Zero || part.SoundFlags != 0)
5975 { 5975 {
5976 update.Sound = part.Sound; 5976 update.Sound = part.Sound;
5977 update.OwnerID = part.OwnerID; 5977 update.OwnerID = part.OwnerID;