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/ns_update.cpp | |
parent | 67bd2c6b2da0d66dc7874dabbc8c9d2136efeb94 (diff) |
Add a command flag to require that a user is executing the command
Diffstat (limited to 'modules/commands/ns_update.cpp')
-rw-r--r-- | modules/commands/ns_update.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/commands/ns_update.cpp b/modules/commands/ns_update.cpp index 8f4812b9e..3786413d3 100644 --- a/modules/commands/ns_update.cpp +++ b/modules/commands/ns_update.cpp @@ -18,6 +18,7 @@ class CommandNSUpdate : public Command public: CommandNSUpdate(Module *creator) : Command(creator, "nickserv/update", 0, 0) { + this->SetFlag(CFLAG_REQUIRE_USER); this->SetDesc(_("Updates your current status, i.e. it checks for new memos")); this->SetSyntax(""); } @@ -25,9 +26,6 @@ class CommandNSUpdate : public Command void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) anope_override { User *u = source.GetUser(); - if (!u) - return; - NickAlias *na = NickAlias::Find(u->nick); if (na && na->nc == source.GetAccount()) |