mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 19:22:45 +01:00
Fixed bug with empty [] in command.
This commit is contained in:
parent
b2beec0804
commit
7b3a62eacf
@ -259,13 +259,16 @@ class IrcObjectProxy:
|
||||
"A proxy object to allow proper nested of commands (even threaded ones)."
|
||||
def __init__(self, irc, msg, args):
|
||||
#debug.printf('__init__: %s' % args)
|
||||
self.irc = irc
|
||||
self.msg = msg
|
||||
self.args = args
|
||||
self.counter = 0
|
||||
self.finalEvaled = False
|
||||
world.commandsProcessed += 1
|
||||
self.evalArgs()
|
||||
if not args:
|
||||
irc.reply(msg, '[]')
|
||||
else:
|
||||
self.irc = irc
|
||||
self.msg = msg
|
||||
self.args = args
|
||||
self.counter = 0
|
||||
self.finalEvaled = False
|
||||
world.commandsProcessed += 1
|
||||
self.evalArgs()
|
||||
|
||||
def findCallback(self, commandName):
|
||||
# Mostly for backwards compatibility now.
|
||||
|
Loading…
Reference in New Issue
Block a user