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