From 3b719220f848e595802434ad2551ea331ddd8cdb Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Tue, 14 Apr 2020 20:26:22 +0200 Subject: [PATCH] move client stuff to new command processor --- MultiServer.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MultiServer.py b/MultiServer.py index 533bf859..7d66adf6 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -407,6 +407,9 @@ class ClientMessageProcessor(CommandProcessor): def output(self, text): notify_client(self.client, text) + def default(self, raw: str): + pass # default is client sending just text + def _cmd_players(self): """Get information about connected and missing players""" notify_all(self.ctx, get_connected_players_string(self.ctx))