From a990249762e3187738cf8996596403971ed25db7 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 16 Feb 2020 15:35:01 +0100 Subject: [PATCH] explain tags a bit to other developers --- MultiServer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MultiServer.py b/MultiServer.py index 4a3d0dff..fe9b56a1 100644 --- a/MultiServer.py +++ b/MultiServer.py @@ -154,6 +154,8 @@ async def on_client_connected(ctx : Context, client : Client): await send_msgs(client.socket, [['RoomInfo', { 'password': ctx.password is not None, 'players': [(client.team, client.slot, client.name) for client in ctx.clients if client.auth], + # tags are for additional features in the communication. + # Name them by feature or fork, as you feel is appropriate. 'tags': ['Berserker'], 'version': "1.0.0" }]])