From 2235a67978ab96ee3f7f5e917a3644374932b694 Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Mon, 16 Feb 2026 00:49:06 +0000 Subject: [PATCH] fix: Update window detection to find actual game client, not launcher Changes: - EU_WINDOW_TITLE: 'Entropia Universe' -> 'Entropia Universe Client' Now matches 'Entropia Universe Client (64-bit) PlanetName' or 'Entropia Universe Client (32-bit) PlanetName' - EU_PROCESS_NAMES: Removed 'clientloader.exe' (launcher only) Now only looks for 'entropia.exe' or 'entropiauniverse.exe' This fixes the issue where the Client Loader was detected instead of the actual game. --- core/window_manager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/window_manager.py b/core/window_manager.py index 7e7a09b..51cc425 100644 --- a/core/window_manager.py +++ b/core/window_manager.py @@ -60,9 +60,9 @@ class WindowManager: _instance = None - # Window search criteria - EU_WINDOW_TITLE = "Entropia Universe" - EU_PROCESS_NAMES = ["entropia.exe", "entropiauniverse.exe", "clientloader.exe"] + # Window search criteria - look for actual game client, not the loader + EU_WINDOW_TITLE = "Entropia Universe Client" # Matches "Entropia Universe Client (64-bit) PlanetName" + EU_PROCESS_NAMES = ["entropia.exe", "entropiauniverse.exe"] # Excludes clientloader.exe (launcher only) def __new__(cls): if cls._instance is None: