Fix !countdown and actually make !options work

This commit is contained in:
caitsith2 2020-07-11 13:19:38 -07:00
parent 963bb7998c
commit 319a315ec5
1 changed files with 1 additions and 1 deletions

View File

@ -647,7 +647,7 @@ class CommonCommandProcessor(CommandProcessor):
for option in self.simple_options:
self.output(f"Option {option} is set to {getattr(self.ctx, option)}")
class ClientMessageProcessor(CommandProcessor):
class ClientMessageProcessor(CommonCommandProcessor):
marker = "!"
def __init__(self, ctx: Context, client: Client):