diff options
| -rw-r--r-- | doc/contributions.txt | 1 | ||||
| -rw-r--r-- | indra/newview/llviewermessage.cpp | 7 | 
2 files changed, 6 insertions, 2 deletions
| diff --git a/doc/contributions.txt b/doc/contributions.txt index 59c6786a51..ab1c7ea1ef 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 fc0e6da7a0..f6b01e92cb 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);  } | 
