Fixed MiscCommands.doPrivmsg to use an IrcObjectProxy when sending stuff to replyWhenNotCommand.

This commit is contained in:
Jeremy Fincher 2003-10-07 17:50:45 +00:00
parent f93b1e305a
commit e25f0653c5

View File

@ -82,6 +82,7 @@ class MiscCommands(callbacks.Privmsg):
if not callbacks.findCallbackForCommand(irc, command):
notCommands.append(repr(command))
if notCommands:
irc = callbacks.IrcObjectProxyRegexp(irc)
replyWhenNotCommand(irc, msg, notCommands)
def list(self, irc, msg, args):