diff --git a/src/Misc.py b/src/Misc.py index ca8d6111c..5c04b0fa7 100755 --- a/src/Misc.py +++ b/src/Misc.py @@ -79,6 +79,7 @@ class Misc(callbacks.Privmsg): super(Misc, self).__init__() self.invalidCommands = ircutils.FloodQueue(60) + priority = sys.maxint + 1 # This is for working with IrcCallbacks. callAfter = utils.Everything() callBefore = utils.Nothing() def __lt__(self, other): diff --git a/src/Owner.py b/src/Owner.py index e06b952aa..38629d900 100644 --- a/src/Owner.py +++ b/src/Owner.py @@ -249,6 +249,7 @@ class Owner(privmsgs.CapabilityCheckingPrivmsg): continue registerDefaultPlugin(name, s) + priority = ~sys.maxint - 1 # For working with IrcCallbacks. callAfter = utils.Nothing() callBefore = utils.Everything() def __lt__(self, other):