aboutsummaryrefslogtreecommitdiff
path: root/modules/to.py
diff options
context:
space:
mode:
authorGravatar Dan2018-09-09 17:36:47 +0100
committerGravatar GitHub2018-09-09 17:36:47 +0100
commit5cb70f7a7e4688a9542f5781a8dc45f0cb599e60 (patch)
treeb7a24a3d17f3ef997d42c2afd1a4c0585427b3c6 /modules/to.py
parentPull in some more (#7) (diff)
parentFix an incorrect call to event["stderr"] in karma.py (diff)
Merge pull request #8 from jesopo/master
Regex is dumb.
Diffstat (limited to 'modules/to.py')
-rw-r--r--modules/to.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/to.py b/modules/to.py
index e566e4c7..849f3af6 100644
--- a/modules/to.py
+++ b/modules/to.py
@@ -4,7 +4,7 @@ class Module(object):
def __init__(self, bot, events, exports):
events.on("received").on("message").on("channel"
).hook(self.channel_message,
- priority=EventManager.PRIORITY_MEDIUM)
+ priority=EventManager.PRIORITY_HIGH)
events.on("received").on("command").on("to").hook(
self.to, min_args=2, help=("Relay a message to a "
"user the next time they talk in a channel"),