online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/StartMenu.gd')
| -rw-r--r-- | ui/StartMenu.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/StartMenu.gd b/ui/StartMenu.gd index 9911974..dd4e5fc 100644 --- a/ui/StartMenu.gd +++ b/ui/StartMenu.gd @@ -18,6 +18,8 @@ func _ready() -> void: colorrect.color = nice_colors[randi() % nice_colors.size()] timer.start(timer_length) _on_Timer_timeout() + if OS.has_feature("HTML5"): + find_node("quit").queue_free() func rand(clr) -> float: |