did rough first version of wxpython lobby window

This commit is contained in:
2023-04-23 21:58:49 -07:00
parent 41f9433de5
commit e3026b631e
3 changed files with 26 additions and 11 deletions

View File

@@ -36,7 +36,7 @@ class ServerVCKO:
joining_player = LobbyMember(joining_player_name, joining_player_id)
self.lobby.append(joining_player)
message = f"lobby joined {joining_player_id}"
conn.send(joining_player_id.encode(Constants.text_format))
conn.send(message.encode(Constants.text_format))
elif full_command[1] == "get_status":
lobby_data = []
for lobby_member in self.lobby: