diff options
Diffstat (limited to 'scenes/microgames')
-rw-r--r-- | scenes/microgames/fishin/fishin.gd | 2 |
1 files changed, 1 insertions, 1 deletions
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: |