Skip to content

Commit

Permalink
Change counter when all girls seen
Browse files Browse the repository at this point in the history
  • Loading branch information
Joy-less committed Dec 24, 2024
1 parent 29b7c95 commit 4885933
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions addons/YouCanDoIt/Scripts/main.gd
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ func refresh_catalog():

# Render counter
counter_label.text = "Seen: {0}/{1}".format([seen_count, seen_count + unseen_count])
if unseen_count == 0:
counter_label.text = "Seen: all {0}!".format([seen_count])

func save_progress(progress:Dictionary)->void:
var save_file:FileAccess = FileAccess.open(save_path, FileAccess.WRITE)
Expand Down

0 comments on commit 4885933

Please sign in to comment.