From 1e397ffe7d0e418624ad01a7cacb5bed3ff6c4b2 Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Sun, 17 Nov 2024 14:48:56 -0600 Subject: Add the first fish to the list of fish seen --- scenes/main.gd | 2 +- scenes/microgames/fishin/fishin.gd | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'scenes') 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: diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd index fdae7d1..c3d6c78 100644 --- a/scenes/microgames/fishin/fishin.gd +++ b/scenes/microgames/fishin/fishin.gd @@ -110,8 +110,6 @@ func _on_texture_button_button_up() -> void: # show fish fish_choice = randi_range(0,len(fishes)) - fish_choice = FishType.MOBY_DICK - match fish_choice: FishType.GAR: gar.visible = true -- cgit v1.2.3