diff options
author | Adam <Adam@anope.org> | 2016-10-07 19:47:46 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-10-07 19:47:46 -0400 |
commit | 78b16853e18e3c601cd806e3ae1115558fc999cd (patch) | |
tree | 08682b2cd61a6aaa21576f691d07e677711fecf4 | |
parent | 1c094f837656fb6eb039860cbf5b90b36747995d (diff) |
cs_seen: allow unregistered users to use
-rw-r--r-- | modules/chanserv/seen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/chanserv/seen.cpp b/modules/chanserv/seen.cpp index fc2d92597..5a2237d8a 100644 --- a/modules/chanserv/seen.cpp +++ b/modules/chanserv/seen.cpp @@ -277,6 +277,7 @@ class CommandSeen : public Command { this->SetDesc(_("Tells you about the last time a user was seen")); this->SetSyntax(_("\037nick\037")); + this->AllowUnregistered(true); } void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override |