diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 13:13:41 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 13:13:41 -0600 |
commit | a26bbf691cbc7b78b9e032f2e08b554a6a4eb559 (patch) | |
tree | b7117ccaaa31ad8ce8395c27ebe9fb2697bb9670 /scenes/microgames/fishin/fishin.gd | |
parent | 1b7ea447c0459893dc9240ad7f4ceeef2dd3189f (diff) |
Salmon
Diffstat (limited to 'scenes/microgames/fishin/fishin.gd')
-rw-r--r-- | scenes/microgames/fishin/fishin.gd | 3 |
1 files changed, 2 insertions, 1 deletions
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: |