From e50243262d04d26b1b553a649db726a8cff3a04b Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 22 Oct 2003 05:15:19 +0000 Subject: [PATCH] Lowered the plugin's priority so it makes its decisisons about whether or not to relay something before anything else has gotten hold of the message. --- plugins/Relay.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Relay.py b/plugins/Relay.py index f254b48b2..080ffc8ae 100644 --- a/plugins/Relay.py +++ b/plugins/Relay.py @@ -36,6 +36,7 @@ Handles relaying between networks. import plugins import re +import sys import time import conf @@ -118,6 +119,7 @@ def configure(onStart, afterConnect, advanced): class Relay(callbacks.Privmsg): + priority = sys.maxint def __init__(self): callbacks.Privmsg.__init__(self) self.ircs = {}