diff options
author | Adam <Adam@anope.org> | 2012-12-19 16:03:53 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-12-19 16:03:53 -0500 |
commit | 276247b463ab0731c1476c94adc247a2934960b3 (patch) | |
tree | 8d9b99f32e58e0e580dbcbd0ab4e36867df4dfa8 /modules/commands/hs_on.cpp | |
parent | 67bd2c6b2da0d66dc7874dabbc8c9d2136efeb94 (diff) |
Add a command flag to require that a user is executing the command
Diffstat (limited to 'modules/commands/hs_on.cpp')
-rw-r--r-- | modules/commands/hs_on.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/commands/hs_on.cpp b/modules/commands/hs_on.cpp index c4cf2fee8..9417ac2be 100644 --- a/modules/commands/hs_on.cpp +++ b/modules/commands/hs_on.cpp @@ -18,18 +18,17 @@ class CommandHSOn : public Command public: CommandHSOn(Module *creator) : Command(creator, "hostserv/on", 0, 0) { + this->SetFlag(CFLAG_REQUIRE_USER); this->SetDesc(_("Activates your assigned vhost")); this->SetSyntax(""); } void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override { - User *u = source.GetUser(); - if (!u) - return; - else if (!IRCD->CanSetVHost) + if (!IRCD->CanSetVHost) return; // HostServ wouldn't even be loaded at this point + User *u = source.GetUser(); const NickAlias *na = NickAlias::Find(u->nick); if (na && u->Account() == na->nc && na->HasVhost()) { |