fix: harden recovery flow and clean diagnostics

This commit is contained in:
Alexander Sellite 2026-09-01 07:44:01 -04:00
parent 0158b0215f
commit ff78710303
64 changed files with 1163 additions and 418 deletions

View file

@ -56,8 +56,8 @@ func _initialize() -> void:
quit(2)
return
for root: String in roots:
var normalized_root := root
for root_path: String in roots:
var normalized_root := root_path
if not normalized_root.ends_with("/"):
normalized_root += "/"
if not normalized_root.begins_with("res://") and not normalized_root.is_absolute_path():