Skip to content
Snippets Groups Projects
Commit f684a4c8 authored by ¡Cinder! ㊝'s avatar ¡Cinder! ㊝ :speech_balloon:
Browse files

lol why did i comment this out?

parent 43a6a3be
No related branches found
No related tags found
No related merge requests found
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
#include "llnotifications.h" #include "llnotifications.h"
#include "llviewernetwork.h" #include "llviewernetwork.h"
#include "llviewerobjectlist.h" #include "llviewerobjectlist.h"
#include "llviewerregion.h"
#include "lltrans.h" #include "lltrans.h"
namespace namespace
...@@ -199,12 +200,12 @@ BOOL LLMuteList::isLinden(const std::string& name) const ...@@ -199,12 +200,12 @@ BOOL LLMuteList::isLinden(const std::string& name) const
} }
else if (LLGridManager::getInstance()->isInOpenSim()) else if (LLGridManager::getInstance()->isInOpenSim())
{ {
/*LLViewerRegion* region = gAgent.getRegion(); LLViewerRegion* region = gAgent.getRegion();
if (!region) return FALSE; if (!region) return FALSE;
std::set<std::string>& gods = region->getGods(); std::set<std::string> gods = region->getGods();
if (gods.empty()) return FALSE; 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; return FALSE;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment