Skip to content

Commit

Permalink
Allow sending inventory without auto-unmuting if Autoresponse for mut…
Browse files Browse the repository at this point in the history
…eds with Inventory Offers is on.
  • Loading branch information
LiruMouse committed Feb 27, 2015
1 parent 31124b1 commit 1ce35de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indra/newview/llmutelist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1ce35de

Please sign in to comment.