fixed issue where you couldnt retry final boss, as well as making transformation cutscene not pausable

This commit is contained in:
pennyrigate 2024-07-11 19:51:29 -04:00
parent 5800db8432
commit cc3c48dac3
3 changed files with 6 additions and 2 deletions

View file

@ -20,4 +20,7 @@ func _on_Exit_button_down():
func _on_Retry_button_down():
get_tree().paused = true
Game.restart_level()
if Game.current_level == 11:
Game.change_map(load("res://maps/boss/boss3_arena.tscn"))
else:
Game.restart_level()