diff options
author | WindowsUser <WindowsUser@users.noreply.github.com> | 2014-05-11 02:45:18 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-05-12 18:40:12 +0200 |
commit | 3cc6f9f550aef92e7d7fee22e0589840a36bf6c4 (patch) | |
tree | ffcf8498ad3da14f543b11596503e499fd647631 /src | |
parent | caec2724849c7f92126168b8724157836e6cffe7 (diff) |
Update core_stats.cpp
Make this consistent with other "Permission Denied" errors.
Diffstat (limited to 'src')
-rw-r--r-- | src/coremods/core_stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_stats.cpp b/src/coremods/core_stats.cpp index a593ac94d..e0e5b3a0f 100644 --- a/src/coremods/core_stats.cpp +++ b/src/coremods/core_stats.cpp @@ -62,7 +62,7 @@ void CommandStats::DoStats(char statschar, User* user, string_list &results) "%s '%c' denied for %s (%s@%s)", (IS_LOCAL(user) ? "Stats" : "Remote stats"), statschar, user->nick.c_str(), user->ident.c_str(), user->host.c_str()); - results.push_back("481 " + user->nick + " :Permission denied - STATS " + statschar + " requires the servers/auspex priv."); + results.push_back("481 " + user->nick + " :Permission Denied - STATS " + statschar + " requires the servers/auspex priv."); return; } |