From d9d1e0108fa03b7a20eb9a797d27b0cc6a154b17 Mon Sep 17 00:00:00 2001 From: Soar Qin Date: Thu, 5 Feb 2026 16:08:38 +0800 Subject: [PATCH] UXAssist: fix auto cruise --- UXAssist/Patches/PlayerPatch.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/UXAssist/Patches/PlayerPatch.cs b/UXAssist/Patches/PlayerPatch.cs index 612e140..3ef1610 100644 --- a/UXAssist/Patches/PlayerPatch.cs +++ b/UXAssist/Patches/PlayerPatch.cs @@ -363,6 +363,7 @@ public class PlayerPatch : PatchImpl /* Update target astro if changed */ _speedUp = false; var player = controller.player; + if (player.mecha.thrusterLevel < 2) return; var navi = player.navigation; if (navi.indicatorAstroId != _indicatorAstroId) { @@ -552,10 +553,7 @@ public class PlayerPatch : PatchImpl [HarmonyPatch(typeof(UISailPanel), nameof(UISailPanel._OnOpen))] public static void OnOpen_Prefix() { - if (_aimingEnabled) - { - UIRoot.instance.uiGame.disableLockCursor = true; - } + UIRoot.instance.uiGame.disableLockCursor = true; } */ }