summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-04-04 18:31:10 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-04-04 18:31:10 +0200
commitcf89660a6b1fde729cfa7f9462f9396394d8b658 (patch)
tree2fbec9561ef06e00fcd2788f99504738c6e67f65 /src/command_parse.cpp
parent23183603b7ea3b2a50ce082d573bef07ab794686 (diff)
Fix snotice about disabled command usage being sent to the wrong snomask
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r--src/command_parse.cpp2
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;
}