diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-04-04 18:31:10 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-04-04 18:31:10 +0200 |
commit | cf89660a6b1fde729cfa7f9462f9396394d8b658 (patch) | |
tree | 2fbec9561ef06e00fcd2788f99504738c6e67f65 /src | |
parent | 23183603b7ea3b2a50ce082d573bef07ab794686 (diff) |
Fix snotice about disabled command usage being sent to the wrong snomask
Diffstat (limited to 'src')
-rw-r--r-- | src/command_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 34844d804..1c72c7de4 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -313,7 +313,7 @@ bool CommandParser::ProcessCommand(LocalUser *user, std::string &cmd) user->nick.c_str(), command.c_str()); } - ServerInstance->SNO->WriteToSnoMask('t', "%s denied for %s (%s@%s)", + ServerInstance->SNO->WriteToSnoMask('a', "%s denied for %s (%s@%s)", command.c_str(), user->nick.c_str(), user->ident.c_str(), user->host.c_str()); return do_more; } |