From 991314c988b5b21efb4421227b88cf55b4f0d1db Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Fri, 23 Aug 2024 20:09:50 -0400 Subject: [PATCH] Launcher: Update message that displays when installing a custom apworld for a game in main (#3607) --- worlds/LauncherComponents.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/worlds/LauncherComponents.py b/worlds/LauncherComponents.py index 18c1a1661ef0..d127bbea36ed 100644 --- a/worlds/LauncherComponents.py +++ b/worlds/LauncherComponents.py @@ -132,7 +132,8 @@ def _install_apworld(apworld_src: str = "") -> Optional[Tuple[pathlib.Path, path break if found_already_loaded: raise Exception(f"Installed APWorld successfully, but '{module_name}' is already loaded,\n" - "so a Launcher restart is required to use the new installation.") + "so a Launcher restart is required to use the new installation.\n" + "If the Launcher is not open, no action needs to be taken.") world_source = worlds.WorldSource(str(target), is_zip=True) bisect.insort(worlds.world_sources, world_source) world_source.load()