From 319a315ec58dec745440935b048bb12bacf5c4a2 Mon Sep 17 00:00:00 2001 From: caitsith2 Date: Sat, 11 Jul 2020 13:19:38 -0700 Subject: [PATCH] Fix !countdown and actually make !options work --- MultiServer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MultiServer.py b/MultiServer.py index ce518614..b969b55a 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -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):