Skip to content

Commit

Permalink
chore: better last-puzzle hud message
Browse files Browse the repository at this point in the history
  • Loading branch information
russmatney committed Mar 1, 2024
1 parent e56c480 commit ef5ee90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hud/HUD.gd
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func update_puzzle_number(entry):
if rem == 0:
puzzle_num_label.text = "[center]Puzzle set complete![/center]"
elif rem == 1:
puzzle_num_label.text = "[center]1 puzzle left![/center]"
puzzle_num_label.text = "[center]Last puzzle![/center]"
else:
puzzle_num_label.text = "[center]%s puzzles left[/center]" % entry.puzzles_remaining

Expand Down

0 comments on commit ef5ee90

Please sign in to comment.