summaryrefslogtreecommitdiff
path: root/scenes/main.gd
diff options
context:
space:
mode:
Diffstat (limited to 'scenes/main.gd')
-rw-r--r--scenes/main.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/scenes/main.gd b/scenes/main.gd
index 8c0ae55..feb39c7 100644
--- a/scenes/main.gd
+++ b/scenes/main.gd
@@ -18,7 +18,7 @@ func _process(delta: float) -> void:
func _on_microgame_spawn_timer_timeout() -> void:
# Spawn a microgame window
var window_instance = null
- if (randf() < 20.5):
+ if (randf() < 0.25):
var window_scene = preload("res://scenes/microgames/microgame_window.tscn")
window_instance = window_scene.instantiate()