diff options
Diffstat (limited to 'modules/commands/hs_on.cpp')
-rw-r--r-- | modules/commands/hs_on.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/commands/hs_on.cpp b/modules/commands/hs_on.cpp index 714fb4410..a7f67de2f 100644 --- a/modules/commands/hs_on.cpp +++ b/modules/commands/hs_on.cpp @@ -13,14 +13,14 @@ class CommandHSOn : public Command { - public: +public: CommandHSOn(Module *creator) : Command(creator, "hostserv/on", 0, 0) { this->SetDesc(_("Activates your assigned vhost")); this->RequireUser(true); } - void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override + void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override { if (!IRCD->CanSetVHost) return; // HostServ wouldn't even be loaded at this point @@ -48,7 +48,7 @@ class CommandHSOn : 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(" "); @@ -63,7 +63,7 @@ class HSOn : public Module { CommandHSOn commandhson; - public: +public: HSOn(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR), commandhson(this) { |