diff options
Diffstat (limited to 'Scenes/Start.gd')
-rw-r--r-- | Scenes/Start.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Scenes/Start.gd b/Scenes/Start.gd index 0109937..de9cdb1 100644 --- a/Scenes/Start.gd +++ b/Scenes/Start.gd @@ -2,8 +2,8 @@ extends Node func _ready(): - var scene = preload("res://Scenes/Maps/World.tscn").instantiate() + var scene = preload("res://Scenes/Maps/World3.tscn").instantiate() var player = preload("res://Scenes/Entities/Player.tscn").instantiate() Utilities.change_scene_with_player_to_position( - scene, player, NodePath("InitialPlayerPosition") + scene, player, NodePath("InitialPlayerPosition"), "down" ) |