Skip to content

Commit

Permalink
fix(Main): Use correct paths for main scenes.
Browse files Browse the repository at this point in the history
  • Loading branch information
pastaq authored and ShadowApex committed Oct 12, 2023
1 parent 55046e6 commit e296262
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/main.gd
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ func _ready() -> void:
if "--qam-only" in args or "--only-qam" in args:
print("[WARN] Deprecation Warning: --only-qam and --qam-only launch arguments are\
deprecated and will be removed in a future update. Use --overlay-mode instead.")
get_tree().change_scene_to_file("res://core/ui/vapor_ui_ooverlay_mode/overlay_mode_main.tscn")
get_tree().change_scene_to_file("res://core/ui/vapor_ui_overlay_mode/overlay_mode_main.tscn")
return
elif "--overlay-mode" in args:
get_tree().change_scene_to_file("res://core/ui/vapor_ui_ooverlay_mode/overlay_mode_main.tscn")
get_tree().change_scene_to_file("res://core/ui/vapor_ui_overlay_mode/overlay_mode_main.tscn")
return
get_tree().change_scene_to_file("res://core/ui/vapor_ui/vapor_ui.tscn")
return
Expand All @@ -35,7 +35,7 @@ func _ready() -> void:
get_tree().change_scene_to_file("res://core/ui/card_ui_overlay_mode/card_ui_overlay_mode.tscn")
return
elif "--overlay-mode" in args:
get_tree().change_scene_to_file("res://core/ui/vapor_ui_ooverlay_mode/overlay_mode_main.tscn")
get_tree().change_scene_to_file("res://core/ui/card_ui_overlay_mode/card_ui_overlay_mode.tscn")
return
# Launch the main interface
get_tree().change_scene_to_file("res://core/ui/card_ui/card_ui.tscn")
Expand Down

0 comments on commit e296262

Please sign in to comment.