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; } */ }