diff options
Diffstat (limited to 'UI/Start.gd')
-rw-r--r-- | UI/Start.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/UI/Start.gd b/UI/Start.gd index 85a7946..53b18fb 100644 --- a/UI/Start.gd +++ b/UI/Start.gd @@ -31,6 +31,7 @@ func get_port() -> int: func _on_peer_connected(id): Network._on_peer_connected(id) + func _on_peer_disconnected(id): Network._on_peer_disconnected(id) @@ -57,4 +58,4 @@ func _on_join_pressed() -> void: func _on_search_pressed() -> void: Client.player.username = %Username.text - get_tree().change_scene_to_file("res://UI/GameLobby/game_lobby.tscn") + get_tree().change_scene_to_file("res://UI/GamesLobby/games_lobby.tscn") |