We need some more irc.noReply()s

This commit is contained in:
James Vega 2005-01-10 18:29:42 +00:00
parent 5ee8f5d9ed
commit efce872b01

View File

@ -102,6 +102,7 @@ class Anonymous(callbacks.Privmsg):
self.log.info('Saying %s in %s due to %s.',
utils.quoted(text), channel, msg.prefix)
irc.queueMsg(ircmsgs.privmsg(channel, text))
irc.noReply()
say = wrap(say, ['inChannel', 'text'])
def do(self, irc, msg, args, channel, text):
@ -113,6 +114,7 @@ class Anonymous(callbacks.Privmsg):
self.log.info('Performing %s in %s due to %s.',
utils.quoted(text), channel, msg.prefix)
irc.queueMsg(ircmsgs.action(channel, text))
irc.noReply()
do = wrap(do, ['inChannel', 'text'])