diff options
-rw-r--r-- | Scenes/Dungeon.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Scenes/Dungeon.gd b/Scenes/Dungeon.gd index c1f6003..fc724c4 100644 --- a/Scenes/Dungeon.gd +++ b/Scenes/Dungeon.gd @@ -110,7 +110,8 @@ func _process(delta): process_turn_logic() func next_stage(): - Global.turns += Global.BONUS_TURNS_STAGE_FINISH + if Global.current_stage < 5: + Global.turns += Global.BONUS_TURNS_STAGE_FINISH Global.current_stage += 1 get_tree().change_scene("res://Scenes/Transition.tscn") |