diff options
author | Adam <Adam@anope.org> | 2013-01-21 22:31:16 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-01-21 22:31:16 -0500 |
commit | ddaa001dafb5122e6e363e4acbbe6ce045b7b104 (patch) | |
tree | 0364a76606ac6e2881ebd663601ce260f7c1101e /modules/commands/hs_off.cpp | |
parent | 51c049e1a738e9124bab3961f35b830906517421 (diff) |
Merge usefulness of Flags and Extensible classes into Extensible, made most flags we have juse strings instead of defines/enums
Diffstat (limited to 'modules/commands/hs_off.cpp')
-rw-r--r-- | modules/commands/hs_off.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/hs_off.cpp b/modules/commands/hs_off.cpp index 0dfd7b16b..a8066b24a 100644 --- a/modules/commands/hs_off.cpp +++ b/modules/commands/hs_off.cpp @@ -18,9 +18,9 @@ class CommandHSOff : public Command public: CommandHSOff(Module *creator) : Command(creator, "hostserv/off", 0, 0) { - this->SetFlag(CFLAG_REQUIRE_USER); this->SetDesc(_("Deactivates your assigned vhost")); this->SetSyntax(""); + this->RequireUser(true); } void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override |