From 67371be0130f40cd9108ea50a65092d390c7d305 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Sun, 17 Nov 2024 15:32:50 -0600 Subject: fix for real this time --- scenes/microgames/fishin/fishin.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scenes/microgames/fishin/fishin.gd') diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd index 511a449..c18686f 100644 --- a/scenes/microgames/fishin/fishin.gd +++ b/scenes/microgames/fishin/fishin.gd @@ -109,7 +109,7 @@ func _on_texture_button_button_up() -> void: happy.visible = true # show fish - fish_choice = randi_range(0,len(fishes)) + fish_choice = randi_range(0,len(fishes)-1) match fish_choice: FishType.GAR: -- cgit v1.2.3