Fixed Owner.isCommand to be isCommandMethod.

This commit is contained in:
Jeremy Fincher 2005-02-18 18:33:01 +00:00
parent ff8728b6c1
commit 6756d4958c

View File

@ -172,9 +172,9 @@ class Owner(callbacks.Plugin):
return None
return msg
def isCommand(self, name):
def isCommandMethod(self, name):
return name == 'log' or \
self.__parent.isCommand(name)
self.__parent.isCommandMethod(name)
def reset(self):
# This has to be done somewhere, I figure here is as good place as any.