mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-23 10:34:19 +01:00
Fixed Owner.isCommand to be isCommandMethod.
This commit is contained in:
parent
ff8728b6c1
commit
6756d4958c
@ -172,9 +172,9 @@ class Owner(callbacks.Plugin):
|
|||||||
return None
|
return None
|
||||||
return msg
|
return msg
|
||||||
|
|
||||||
def isCommand(self, name):
|
def isCommandMethod(self, name):
|
||||||
return name == 'log' or \
|
return name == 'log' or \
|
||||||
self.__parent.isCommand(name)
|
self.__parent.isCommandMethod(name)
|
||||||
|
|
||||||
def reset(self):
|
def reset(self):
|
||||||
# This has to be done somewhere, I figure here is as good place as any.
|
# This has to be done somewhere, I figure here is as good place as any.
|
||||||
|
Loading…
Reference in New Issue
Block a user