diff --git a/doc/contributions.txt b/doc/contributions.txt index 59c6786a51c0c436a7978b438c8ab57d6697b33c..ab1c7ea1efca6b21c299148e9c92f410db561615 100644 --- a/doc/contributions.txt +++ b/doc/contributions.txt @@ -450,6 +450,7 @@ Jonathan Yap STORM-899 STORM-1273 STORM-457 + STORM-1396 STORM-1292 STORM-1392 STORM-1302 diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index fc0e6da7a07a679a2a5518d8acbb478f9fb06875..f6b01e92cbccc29882de15ad666035edffbf1645 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -4326,8 +4326,11 @@ void process_sound_trigger(LLMessageSystem *msg, void **) } // Don't play sounds from gestures if they are not enabled. - if (!gSavedSettings.getBOOL("EnableGestureSounds")) return; - + if (object_id == owner_id && !gSavedSettings.getBOOL("EnableGestureSounds")) + { + return; + } + gAudiop->triggerSound(sound_id, owner_id, gain, LLAudioEngine::AUDIO_TYPE_SFX, pos_global); }