From f8f30f41b76435c20040087fbd23d9e0ea2c14e7 Mon Sep 17 00:00:00 2001 From: Katelyn Gigante Date: Sun, 5 Oct 2025 14:30:52 +1100 Subject: [PATCH] Launcher: Newly installed custom worlds are not relative #4989 Co-authored-by: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> --- worlds/LauncherComponents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/LauncherComponents.py b/worlds/LauncherComponents.py index 527208cc..be58b048 100644 --- a/worlds/LauncherComponents.py +++ b/worlds/LauncherComponents.py @@ -180,7 +180,7 @@ def _install_apworld(apworld_src: str = "") -> Optional[Tuple[pathlib.Path, path if found_already_loaded and is_kivy_running(): raise Exception(f"Installed APWorld successfully, but '{module_name}' is already loaded, " "so a Launcher restart is required to use the new installation.") - world_source = worlds.WorldSource(str(target), is_zip=True) + world_source = worlds.WorldSource(str(target), is_zip=True, relative=False) bisect.insort(worlds.world_sources, world_source) world_source.load()