From 1c9f996248b5a0f2f4a1339f4e5472171486df18 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Tue, 31 Jul 2012 03:37:10 -0400 Subject: [PATCH] Make "Autorespond to people you have muted" an independent toggle for that type of autoresponse. Trivial fix to carry users along, not needing to autorespond to anyone in order to autorespond to mutes. I was working on a complete rewrite months ago, I have to dig that up, even still this system needs to be redone, ground up. --- indra/newview/llviewermessage.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 414c4bff2..3b61f7af5 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -2060,8 +2060,8 @@ void process_improved_im(LLMessageSystem *msg, void **user_data) LLAvatarTracker::instance().getBuddyInfo(from_id) == NULL ) do_auto_response = true; - if( is_muted && !gSavedPerAccountSettings.getBOOL("AscentInstantMessageResponseMuted") ) - do_auto_response = false; + if( is_muted ) + do_auto_response = gSavedPerAccountSettings.getBOOL("AscentInstantMessageResponseMuted"); if( offline != IM_ONLINE ) do_auto_response = false;