From 1ce35de4bd5832a9a4f4c8719caed1c112b6000a Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Thu, 26 Feb 2015 22:06:54 -0500 Subject: [PATCH] Allow sending inventory without auto-unmuting if Autoresponse for muteds with Inventory Offers is on. --- indra/newview/llmutelist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp index 20386623b..4fb306317 100644 --- a/indra/newview/llmutelist.cpp +++ b/indra/newview/llmutelist.cpp @@ -500,7 +500,7 @@ BOOL LLMuteList::autoRemove(const LLUUID& agent_id, const EAutoReason reason) { BOOL removed = FALSE; - if (isMuted(agent_id)) + if (isMuted(agent_id) && !(reason == AR_INVENTORY && gSavedSettings.getBOOL("AutoresponseMutedItem"))) { LLMute automute(agent_id, LLStringUtil::null, LLMute::AGENT); removed = TRUE;