move client stuff to new command processor
This commit is contained in:
parent
af78914d22
commit
3b719220f8
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue