aboutsummaryrefslogtreecommitdiff
path: root/src/core_modules/command_spec.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/core_modules/command_spec.py')
-rw-r--r--src/core_modules/command_spec.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/core_modules/command_spec.py b/src/core_modules/command_spec.py
index 9d6e8b90..d8ac84d4 100644
--- a/src/core_modules/command_spec.py
+++ b/src/core_modules/command_spec.py
@@ -89,13 +89,15 @@ class Module(ModuleManager.BaseModule):
value = server.get_user(args[0], create=True)
n = 1
elif argument_type.type == "channelonly":
- value = not channel == None
+ if channel:
+ value = True
n = 0
- error = "Command not valid in private message"
+ error = "Command not valid in PM"
elif argument_type.type == "privateonly":
- value = channel == None
+ if not channel:
+ value = True
n = 0
- error = "Command not valid in private message"
+ error = "Command not valid in-channel"
options.append([argument_type, value, n, error])
return options