diff options
Diffstat (limited to 'scenes/main.gd')
-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 5ad9b2e..471d0c6 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -18,7 +18,7 @@ func _on_microgame_spawn_timer_timeout() -> void: var window_scene = preload("res://scenes/microgames/ad/ad_window.tscn") var window_instance = window_scene.instantiate() add_child(window_instance) - var microgame_scene = preload("res://scenes/microgames/window_mvp.tscn") + var microgame_scene = preload("res://scenes/microgames/ad/ad.tscn") var microgame_instance = microgame_scene.instantiate() window_instance.add_child(microgame_instance) |