mirror of
https://github.com/anope/anope.git
synced 2026-06-30 22:06:38 +02:00
Fix extra space in the unknown command error message
This commit is contained in:
+1
-1
@@ -218,7 +218,7 @@ void Command::Run(CommandSource &source, const Anope::string &message)
|
||||
if (it == source.service->commands.end())
|
||||
{
|
||||
if (has_help)
|
||||
source.Reply(_("Unknown command \002%s\002. \"%s %s HELP\" for help."), message.c_str(), Config->StrictPrivmsg.c_str(), source.service->nick.c_str());
|
||||
source.Reply(_("Unknown command \002%s\002. \"%s%s HELP\" for help."), message.c_str(), Config->StrictPrivmsg.c_str(), source.service->nick.c_str());
|
||||
else
|
||||
source.Reply(_("Unknown command \002%s\002."), message.c_str());
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user