diff --git a/edmond/bot.py b/edmond/bot.py index d2b2821..8946cb7 100644 --- a/edmond/bot.py +++ b/edmond/bot.py @@ -155,4 +155,5 @@ class Bot(irc.client.SimpleIRCClient, Logger): callbacks = plugin.callbacks if etype not in callbacks: continue - callbacks[etype](event) + if callbacks[etype](event): + break