diff --git a/modules/ircv3_echo_message.py b/modules/ircv3_echo_message.py index a13d079e..276ac554 100644 --- a/modules/ircv3_echo_message.py +++ b/modules/ircv3_echo_message.py @@ -4,8 +4,8 @@ CAP = utils.irc.Capability("echo-message", depends_on=["labeled-response"]) @utils.export("cap", CAP) class Module(ModuleManager.BaseModule): - @utils.hook("raw.send.privmsg", priority=EventManager.PRIORITY_HIGH) - @utils.hook("raw.send.notice", priority=EventManager.PRIORITY_HIGH) + @utils.hook("raw.send.privmsg", priority=EventManager.PRIORITY_LOW) + @utils.hook("raw.send.notice", priority=EventManager.PRIORITY_LOW) def send_message(self, event): if event["server"].has_capability(CAP): event.eat()