|
@@ -57,11 +57,9 @@ func load_level(name):
|
|
|
|
|
|
func _unhandled_input(event):
|
|
|
if event.is_action("ui_accept") and event.is_pressed():
|
|
|
- if get_tree().has_group("running"):
|
|
|
- var running = get_tree().get_nodes_in_group("running")
|
|
|
- if !running.empty():
|
|
|
- return
|
|
|
- create_game()
|
|
|
+ if is_round_won == null or is_round_won:
|
|
|
+ is_round_won = false
|
|
|
+ create_game()
|
|
|
|
|
|
func create_game():
|
|
|
# Clear if required
|