summaryrefslogtreecommitdiff
path: root/scenes/microgames/fishin/fishin.gd
diff options
context:
space:
mode:
Diffstat (limited to 'scenes/microgames/fishin/fishin.gd')
-rw-r--r--scenes/microgames/fishin/fishin.gd3
1 files changed, 2 insertions, 1 deletions
diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd
index e657b22..a0db9f3 100644
--- a/scenes/microgames/fishin/fishin.gd
+++ b/scenes/microgames/fishin/fishin.gd
@@ -110,7 +110,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:
@@ -118,6 +118,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: