diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-15 15:23:26 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-02-15 15:23:26 +0000 |
commit | f74036dc585c4830eb874a74517808b1cf308e52 (patch) | |
tree | 8260df1eee72b07fe1d93526bd97c41e8fb2e5a1 /src/core/ms_help.c | |
parent | d121c4bd37bdcc1a4d863d6452a33176d1f4bcc6 (diff) |
Set CFLAG_ALLOW_UNREGISTERED on commands which should be usable for unidentified users.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2066 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/ms_help.c')
-rw-r--r-- | src/core/ms_help.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/ms_help.c b/src/core/ms_help.c index 687944961..20471a1c4 100644 --- a/src/core/ms_help.c +++ b/src/core/ms_help.c @@ -20,6 +20,7 @@ class CommandMSHelp : public Command public: CommandMSHelp() : Command("HELP", 1, 1) { + this->SetFlag(CFLAG_ALLOW_UNREGISTERED); } CommandReturn Execute(User *u, std::vector<std::string> ¶ms) |