summaryrefslogtreecommitdiff
path: root/include/modules.h
diff options
context:
space:
mode:
authoradam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864>2009-06-28 18:49:07 +0000
committeradam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864>2009-06-28 18:49:07 +0000
commit712cbb540c41e56115061be296f419e21111bedd (patch)
tree90c3173ffc6818b8bfff7cf7abb677c6b9f6c1c5 /include/modules.h
parent108cf5e60d43486235349bce3ae7aa8b2b4dae7f (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 'include/modules.h')
-rw-r--r--include/modules.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/modules.h b/include/modules.h
index 9a1fc3871..7a1edf716 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -220,7 +220,9 @@ enum CommandFlags
CFLAG_ALLOW_UNREGISTERED = 1,
CFLAG_ALLOW_FORBIDDEN = 2,
CFLAG_ALLOW_SUSPENDED = 4,
- CFLAG_ALLOW_UNREGISTEREDCHANNEL = 8
+ CFLAG_ALLOW_UNREGISTEREDCHANNEL = 8,
+ CFLAG_STRIP_CHANNEL = 16,
+ CFLAG_DISABLE_FANTASY = 32
};
/** Every services command is a class, inheriting from Command.