aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloatermap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llfloatermap.cpp')
-rw-r--r--linden/indra/newview/llfloatermap.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/linden/indra/newview/llfloatermap.cpp b/linden/indra/newview/llfloatermap.cpp
index 6d23ab4..c60f07f 100644
--- a/linden/indra/newview/llfloatermap.cpp
+++ b/linden/indra/newview/llfloatermap.cpp
@@ -194,6 +194,21 @@ void LLFloaterMap::open()
194*/ 194*/
195 195
196//static 196//static
197bool LLFloaterMap::isImpDev(LLUUID agent_id)
198{
199 // We use strings here as avatar keys change across grids.
200 // Feel free to add/remove yourself.
201 std::string agent_name = getSelectedName(agent_id);
202 if (agent_name == "McCabe Maxsted" ||
203 agent_name == "Jacek Antonelli" ||
204 agent_name == "Armin Weatherwax")
205 {
206 return true;
207 }
208 return false;
209}
210
211//static
197void LLFloaterMap::updateRadar() 212void LLFloaterMap::updateRadar()
198{ 213{
199 LLFloaterMap::getInstance()->populateRadar(); 214 LLFloaterMap::getInstance()->populateRadar();