diff options
| author | 2018-11-14 14:41:28 +0000 | |
|---|---|---|
| committer | 2018-11-14 14:41:28 +0000 | |
| commit | ed838193aa2b6c9e4ecfcad7dc1710ece737aad3 (patch) | |
| tree | 1c4de42295b6bdeb02c781f329a12b1bed6abc14 /modules/words.py | |
| parent | Typo in src/utils/irc.py, 'resplace' -> 'replace' (diff) | |
Better support passing "send" events through the parsers already present in
modules/line_handler.py
Diffstat (limited to 'modules/words.py')
| -rw-r--r-- | modules/words.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/words.py b/modules/words.py index 153c0a78..a4295b79 100644 --- a/modules/words.py +++ b/modules/words.py @@ -32,7 +32,7 @@ class Module(ModuleManager.BaseModule): priority=EventManager.PRIORITY_MONITOR) def channel_message(self, event): self._channel_message(event["user"], event) - @utils.hook("self.message.channel", + @utils.hook("send.message.channel", priority=EventManager.PRIORITY_MONITOR) def self_channel_message(self, event): self._channel_message(event["server"].get_user( |
