diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 15:51:37 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 15:51:37 -0600 |
commit | 03efa21bae32c16a7028275b3914fb0bf35a99a0 (patch) | |
tree | 0b71e62b6bfe73d7a64f47b9081e5056077c9d5b /scenes/microgames | |
parent | 4fc8ff1304191ed75efc4aca6d5102792a09e96c (diff) | |
parent | 67371be0130f40cd9108ea50a65092d390c7d305 (diff) |
Merge branch 'main' into clippette-dialogue
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: |