diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-06-12 12:02:28 +0300 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-06-12 12:02:28 +0300 |
commit | ad635e9f0eb32df227e96d5c5fd751a36ef61d92 (patch) | |
tree | a8cc614fc2bb6c7fb2ef193b8885d57ea3ca1ded /indra/newview/llagent.cpp | |
parent | f851d453dcccdf029f5cda6f90c34561cc116236 (diff) |
MAINT-4900 FIXED Don't show group info for non-admins.
Diffstat (limited to 'indra/newview/llagent.cpp')
-rwxr-xr-x | indra/newview/llagent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 359171c5bd..6f2c1859e4 100755 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -2843,7 +2843,7 @@ BOOL LLAgent::isInGroup(const LLUUID& group_id, BOOL ignore_god_mode /* FALSE */ // This implementation should mirror LLAgentInfo::hasPowerInGroup BOOL LLAgent::hasPowerInGroup(const LLUUID& group_id, U64 power) const { - if (isGodlike()) + if (isGodlikeWithoutAdminMenuFakery()) return true; // GP_NO_POWERS can also mean no power is enough to grant an ability. |