fixed host client not receiving their id

This commit is contained in:
2025-07-15 11:05:19 +02:00
parent 999d8b24d2
commit e7b53601c0
3 changed files with 72 additions and 22 deletions
+1
View File
@@ -98,6 +98,7 @@ func _handle_response(response: String) -> void:
if data["status"] == "ok":
_lobby_id = data["lobby_id"]
_client_id = data["client_id"]
received_client_id.emit.call_deferred(_client_id)
connected_to_lobby.emit.call_deferred(_lobby_id)
connection_status_changed.emit.call_deferred(ConnectionStatus.JOINED)
"join_lobby_response":