diff options
| author | 2019-06-16 18:40:25 +0100 | |
|---|---|---|
| committer | 2019-06-16 18:40:25 +0100 | |
| commit | 98e1202c780faf7b3fab1c49e87581a857376d5c (patch) | |
| tree | 94b0259aa64363566fd07ee89c0e3ba7a88cfee8 /modules/ducks.py | |
| parent | Don't fail get_kwarg when self.kwarg[name] is falsey (diff) | |
| signature | ||
Allow command.regex hooks to opt-in to being triggered from a /me
closes #68
Diffstat (limited to 'modules/ducks.py')
| -rw-r--r-- | modules/ducks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ducks.py b/modules/ducks.py index cbf65eba..1fa4d854 100644 --- a/modules/ducks.py +++ b/modules/ducks.py @@ -44,7 +44,7 @@ class Module(ModuleManager.BaseModule): if show_duck: self._trigger_duck(channel) - @utils.hook("command.regex", expect_output=False) + @utils.hook("command.regex", expect_output=False, ignore_action=False) def channel_message(self, event): """ :pattern: .+ |
