diff options
Diffstat (limited to 'scenes/microgames')
-rw-r--r-- | scenes/microgames/fishin/fishin.gd | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scenes/microgames/fishin/fishin.gd b/scenes/microgames/fishin/fishin.gd index 8e12c03..91be725 100644 --- a/scenes/microgames/fishin/fishin.gd +++ b/scenes/microgames/fishin/fishin.gd @@ -79,7 +79,7 @@ func _on_texture_button_button_up() -> void: func _on_start_game_timeout() -> void: - if randf() < 0.5: + if randf() < 0.2: start_game_timer.stop() in_game_timer.start() @@ -95,8 +95,7 @@ func _on_start_game_timeout() -> void: mash.visible = true mouse.visible = true - #num_clicks = randi_range(5,21) - num_clicks = 5 # playtesting is hard + num_clicks = randi_range(5,10) #num_clicks = 21 get_window().title = "MASH MASH MASH MASH MASH" |