diff --git a/plugins/AutoMode.py b/plugins/AutoMode.py index cf42f64f3..b16548816 100644 --- a/plugins/AutoMode.py +++ b/plugins/AutoMode.py @@ -101,8 +101,9 @@ class AutoMode(callbacks.Privmsg): if ircdb.checkCapability(msg.prefix, cap): msgmaker = getattr(ircmsgs, type) irc.queueMsg(msgmaker(channel, msg.nick)) - if not fallthrough: - raise Continue + raise Continue # Even if fallthrough, let's only do one. + elif not fallthrough: + raise Continue try: do('op') if 'h' in irc.state.supported['prefix']: