game now correctly rotates through plays and goes to the next rounds when all cards have been played

This commit is contained in:
2025-07-15 19:38:27 +02:00
parent 231e861416
commit e0cea82394
6 changed files with 60 additions and 10 deletions
+1
View File
@@ -105,6 +105,7 @@ func _on_web_client_tcp_received_play_winner_request() -> void:
for play in _plays:
if play.card_id == winning_card_id:
web_client.submit_play_winner(play.client_id)
_plays.clear()
return
func _on_web_client_tcp_trump_received(trump_id: int) -> void: