diff options
Diffstat (limited to 'linden/indra/newview')
-rw-r--r-- | linden/indra/newview/llviewernetwork.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/linden/indra/newview/llviewernetwork.cpp b/linden/indra/newview/llviewernetwork.cpp index 9019b88..8c4be1f 100644 --- a/linden/indra/newview/llviewernetwork.cpp +++ b/linden/indra/newview/llviewernetwork.cpp | |||
@@ -253,10 +253,13 @@ bool LLViewerLogin::isInProductionGrid() | |||
253 | std::vector<std::string> uris; | 253 | std::vector<std::string> uris; |
254 | getLoginURIs(uris); | 254 | getLoginURIs(uris); |
255 | LLStringUtil::toLower(uris[0]); | 255 | LLStringUtil::toLower(uris[0]); |
256 | if((uris[0].find("agni") != std::string::npos)) | 256 | |
257 | // Returns true for every grid but Aditi now, | ||
258 | // because opensim grids have feelings too! -- McCabe | ||
259 | if((uris[0].find("aditi") != std::string::npos)) | ||
257 | { | 260 | { |
258 | return true; | 261 | return false; |
259 | } | 262 | } |
260 | 263 | ||
261 | return false; | 264 | return true; |
262 | } | 265 | } |