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/main.tscn | 1 - scenes/microgames/fishin/fishin.gd | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/scenes/main.tscn b/scenes/main.tscn index 252839a..7b6d467 100644 --- a/scenes/main.tscn +++ b/scenes/main.tscn @@ -289,7 +289,6 @@ animations = [{ }] [node name="Node2D2" type="Node2D"] -skew = 0.122173 script = ExtResource("1_y7a0r") [node name="Sprite2D" type="Sprite2D" parent="."] 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