diff options
Diffstat (limited to 'modules/commands/os_update.cpp')
-rw-r--r-- | modules/commands/os_update.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/commands/os_update.cpp b/modules/commands/os_update.cpp index af2a008dd..1b88e4b0d 100644 --- a/modules/commands/os_update.cpp +++ b/modules/commands/os_update.cpp @@ -16,10 +16,10 @@ class CommandOSUpdate : public Command public: CommandOSUpdate(Module *creator) : Command(creator, "operserv/update", 0, 0) { - this->SetDesc(_("Force the Services databases to be updated immediately")); + this->SetDesc(_("Force the services databases to be updated immediately")); } - void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override + void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override { Log(LOG_ADMIN, source, this); source.Reply(_("Updating databases.")); @@ -27,11 +27,11 @@ class CommandOSUpdate : public Command return; } - bool OnHelp(CommandSource &source, const Anope::string &subcommand) anope_override + bool OnHelp(CommandSource &source, const Anope::string &subcommand) override { this->SendSyntax(source); source.Reply(" "); - source.Reply(_("Causes Services to update all database files as soon as you\n" + source.Reply(_("Causes services to update all database files as soon as you\n" "send the command.")); return true; } |