From d62772abc6e271d95437741e7a1ac02ef161144b Mon Sep 17 00:00:00 2001 From: Ishigh1 Date: Wed, 5 Aug 2026 07:59:08 +0200 Subject: [PATCH] Core: Fix Open Patch (#6356) --- worlds/LauncherComponents.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/worlds/LauncherComponents.py b/worlds/LauncherComponents.py index 51b129a70b..15ccc29a16 100644 --- a/worlds/LauncherComponents.py +++ b/worlds/LauncherComponents.py @@ -7,6 +7,7 @@ import webbrowser from enum import Enum from typing import Optional, Callable, Iterable, Sequence +from Launcher import launch as launch_exe from Utils import local_path, open_filename, is_frozen, is_kivy_running, open_file, user_path, read_apignore, \ is_windows @@ -242,7 +243,7 @@ def open_patch(): if exe is None or not isfile(exe[-1]): exe = get_exe("Launcher") - launch([*exe, file], component.cli) + launch_exe([*exe, file], component.cli) def get_exe(component: str | Component) -> Sequence[str] | None: