diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 14:48:56 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 14:48:56 -0600 |
commit | 1e397ffe7d0e418624ad01a7cacb5bed3ff6c4b2 (patch) | |
tree | eb9a501f9a1ac96633bb32eee0620a21522b29ac /scenes/main.gd | |
parent | 9f7327a275b3861f687c62d76ef94c00160dbfb6 (diff) |
Add the first fish to the list of fish seen
Diffstat (limited to 'scenes/main.gd')
-rw-r--r-- | scenes/main.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scenes/main.gd b/scenes/main.gd index 7c1b83b..8c0ae55 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -63,7 +63,7 @@ func _on_fishin_win(fish_caught: Fishin.FishType) -> void: $Clippette.visible = true $Clippette.start_dialogue() $"Score window (real)".visible = true - + fish_seen.push_back(fish_caught) func _on_score_window_donezo() -> void: |