diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 14:50:45 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-17 14:50:45 -0600 |
commit | 4835e089da250e17baec9131ceb950bd5a8d7641 (patch) | |
tree | 5c511ae1cb8110ff2e57815500e4cfeb8cf0cc1e /scenes | |
parent | 1e397ffe7d0e418624ad01a7cacb5bed3ff6c4b2 (diff) |
Spawn ads again
Diffstat (limited to 'scenes')
-rw-r--r-- | scenes/main.gd | 2 |
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() |