mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
10 lines
208 B
GDScript
10 lines
208 B
GDScript
extends Label
|
|
|
|
sync func return_to_lobby():
|
|
get_tree().change_scene("res://source/scenes/GUI/network_setup.tscn")
|
|
|
|
|
|
func _on_win_timer_timeout():
|
|
if get_tree().is_network_server():
|
|
rpc("return_to_lobby")
|