diff options
author | adam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-06-28 18:49:07 +0000 |
---|---|---|
committer | adam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-06-28 18:49:07 +0000 |
commit | 712cbb540c41e56115061be296f419e21111bedd (patch) | |
tree | 90c3173ffc6818b8bfff7cf7abb677c6b9f6c1c5 /src/core/cs_help.c | |
parent | 108cf5e60d43486235349bce3ae7aa8b2b4dae7f (diff) |
Add ability for fantasy to be disabled for some commands and strip the channel name from them
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2341 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/core/cs_help.c')
-rw-r--r-- | src/core/cs_help.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/cs_help.c b/src/core/cs_help.c index 4d7011440..2cc334f65 100644 --- a/src/core/cs_help.c +++ b/src/core/cs_help.c @@ -21,6 +21,7 @@ class CommandCSHelp : public Command CommandCSHelp() : Command("HELP", 1, 1) { this->SetFlag(CFLAG_ALLOW_UNREGISTERED); + this->SetFlag(CFLAG_STRIP_CHANNEL); } CommandReturn Execute(User *u, std::vector<std::string> ¶ms) |