diff options
Diffstat (limited to 'modules/botserv/set.cpp')
-rw-r--r-- | modules/botserv/set.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/botserv/set.cpp b/modules/botserv/set.cpp index 638aac012..d137882a6 100644 --- a/modules/botserv/set.cpp +++ b/modules/botserv/set.cpp @@ -31,7 +31,7 @@ class CommandBSSet : public Command void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override { - this->OnSyntaxError(source, ""); + this->OnSyntaxError(source); } bool OnHelp(CommandSource &source, const Anope::string &subcommand) override @@ -191,7 +191,7 @@ class CommandBSSetPrivate : public Command } else { - this->OnSyntaxError(source, source.GetCommand()); + this->OnSyntaxError(source); } } |