aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-10-03 16:42:11 +0100
committerGravatar jesopo2019-10-03 16:42:11 +0100
commit95f098b6d61e38dddd66b5e2de66c1a22498a724 (patch)
treee1829eb31372628a615cc356289c012c5783ecb8 /modules
parentonly look at PRIVMSG and NOTICE for !seen (diff)
signature
pass whether a command.regex trigger was an ACTION or not
Diffstat (limited to 'modules')
-rw-r--r--modules/commands/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/commands/__init__.py b/modules/commands/__init__.py
index 0c8c54c5..9b104325 100644
--- a/modules/commands/__init__.py
+++ b/modules/commands/__init__.py
@@ -320,7 +320,8 @@ class Module(ModuleManager.BaseModule):
res = self.command(event["server"], event["channel"],
event["target_str"], True, event["user"], command,
"", event["tags"], hook, match=match,
- message=event["message"], command_prefix="")
+ message=event["message"], command_prefix="",
+ action=event["action"])
if res:
break