diff options
| author | 2019-03-03 22:46:24 +0000 | |
|---|---|---|
| committer | 2019-03-03 22:46:24 +0000 | |
| commit | 2affba99ca5d481de97f3063449c0986b18589c9 (patch) | |
| tree | 48bb7fd90ab4398e288c631d069bc98ee1a5f233 /modules/line_handler/__init__.py | |
| parent | @utils.hook shouldn't be in line_handler/message.py (diff) | |
| signature | ||
Minor refactors across line_handler
Diffstat (limited to 'modules/line_handler/__init__.py')
| -rw-r--r-- | modules/line_handler/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/line_handler/__init__.py b/modules/line_handler/__init__.py index 3f18c891..1213de10 100644 --- a/modules/line_handler/__init__.py +++ b/modules/line_handler/__init__.py @@ -97,11 +97,12 @@ class Module(ModuleManager.BaseModule): def handle_366(self, event): channel.handle_366(event) - @utils.hook("raw.received.375") + @utils.hook("raw.received.375", priority=EventManager.PRIORITY_HIGH) def motd_start(self, event): core.motd_start(event) @utils.hook("raw.received.372") + @utils.hook("raw.received.375") def motd_line(self, event): core.motd_line(event) |
