From f684a4c81af275b55e3d5e5d4a61d1fcad4a8cc5 Mon Sep 17 00:00:00 2001 From: Cinders <cinder@cinderblocks.biz> Date: Thu, 13 Aug 2015 20:06:01 -0600 Subject: [PATCH] lol why did i comment this out? --- indra/newview/llmutelist.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/indra/newview/llmutelist.cpp b/indra/newview/llmutelist.cpp index 0fd8813c76..dd48469869 100755 --- a/indra/newview/llmutelist.cpp +++ b/indra/newview/llmutelist.cpp @@ -58,6 +58,7 @@ #include "llnotifications.h" #include "llviewernetwork.h" #include "llviewerobjectlist.h" +#include "llviewerregion.h" #include "lltrans.h" namespace @@ -199,12 +200,12 @@ BOOL LLMuteList::isLinden(const std::string& name) const } else if (LLGridManager::getInstance()->isInOpenSim()) { - /*LLViewerRegion* region = gAgent.getRegion(); + LLViewerRegion* region = gAgent.getRegion(); if (!region) return FALSE; - std::set<std::string>& gods = region->getGods(); + std::set<std::string> gods = region->getGods(); if (gods.empty()) return FALSE; - return (gods.find(name) != gods.end() || gods.find(last_name) != gods.end());*/ + return (gods.find(name) != gods.end() || gods.find(last_name) != gods.end()); } return FALSE; } -- GitLab