diff options
| author | 2019-10-03 16:42:11 +0100 | |
|---|---|---|
| committer | 2019-10-03 16:42:11 +0100 | |
| commit | 95f098b6d61e38dddd66b5e2de66c1a22498a724 (patch) | |
| tree | e1829eb31372628a615cc356289c012c5783ecb8 /modules | |
| parent | only 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__.py | 3 |
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 |
