Add a couple irc.noReply calls. Thanks to Infobot for spotting these.

This commit is contained in:
James Vega 2005-01-06 02:59:35 +00:00
parent 63dc27905b
commit 3598a0ac28

View File

@ -378,6 +378,7 @@ class Owner(privmsgs.CapabilityCheckingPrivmsg):
c = ircdb.channels.getChannel(channel) c = ircdb.channels.getChannel(channel)
if not c.lobotomized: if not c.lobotomized:
irc.queueMsg(ircmsgs.privmsg(channel, text)) irc.queueMsg(ircmsgs.privmsg(channel, text))
irc.noReply()
announce = wrap(announce, ['text']) announce = wrap(announce, ['text'])
def defaultplugin(self, irc, msg, args, optlist, command, plugin): def defaultplugin(self, irc, msg, args, optlist, command, plugin):
@ -427,6 +428,7 @@ class Owner(privmsgs.CapabilityCheckingPrivmsg):
irc.error(utils.exnToString(e)) irc.error(utils.exnToString(e))
else: else:
irc.queueMsg(m) irc.queueMsg(m)
irc.noReply()
ircquote = wrap(ircquote, ['text']) ircquote = wrap(ircquote, ['text'])
def quit(self, irc, msg, args, text): def quit(self, irc, msg, args, text):