diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/commands/cmd_who.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commands/cmd_who.cpp b/src/commands/cmd_who.cpp index 9ba3c0fc9..1b77dd004 100644 --- a/src/commands/cmd_who.cpp +++ b/src/commands/cmd_who.cpp @@ -253,7 +253,8 @@ CmdResult CommandWho::Handle (const std::vector<std::string>& parameters, User * opt_mode = true; break; case 'M': - opt_metadata = true; + if (user->HasPrivPermission("users/auspex")) + opt_metadata = true; break; case 'i': opt_ident = true; |