From a26bbf691cbc7b78b9e032f2e08b554a6a4eb559 Mon Sep 17 00:00:00 2001 From: Zoey Kitt Date: Sun, 17 Nov 2024 13:13:41 -0600 Subject: Salmon --- scenes/microgames/fishin/fishin.gd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scenes/microgames/fishin') diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd index 475a97a..fa8d588 100644 --- a/scenes/microgames/fishin/fishin.gd +++ b/scenes/microgames/fishin/fishin.gd @@ -109,7 +109,7 @@ func _on_texture_button_button_up() -> void: var fish_choice: FishType = randi_range(0,len(fishes)) # hehe - fish_choice = FishType.GAR + fish_choice = FishType.SALMON match fish_choice: FishType.GAR: @@ -117,6 +117,7 @@ func _on_texture_button_button_up() -> void: fish_chosen.emit(gar.get_node("GarSprite"), "Gar :)") FishType.SALMON: salmon.visible = true + fish_chosen.emit(salmon.get_node("SalmonSprite"), "Salmon") FishType.BASS: bass.visible = true FishType.HUMUHUMUNUKUNUKUAPUA_A: -- cgit v1.2.3