From 74c61c3eb9b7f7c0741d36d1aef1443a2637fe08 Mon Sep 17 00:00:00 2001 From: Soar Qin Date: Tue, 18 Mar 2025 20:17:38 +0800 Subject: [PATCH] minor fix --- UXAssist/Patches/FactoryPatch.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UXAssist/Patches/FactoryPatch.cs b/UXAssist/Patches/FactoryPatch.cs index ed3887d..be8b16b 100644 --- a/UXAssist/Patches/FactoryPatch.cs +++ b/UXAssist/Patches/FactoryPatch.cs @@ -53,7 +53,7 @@ public class FactoryPatch : PatchImpl I18N.Add("KEYToggleDoNotRenderEntities", "Toggle Do Not Render Factory Entities", "切换不渲染工厂建筑实体"); _offgridfForPathsKey = KeyBindings.RegisterKeyBinding(new BuiltinKey { - key = new CombineKey(0, 0, ECombineKeyAction.OnceClick, false), + key = new CombineKey(0, 0, ECombineKeyAction.OnceClick, true), conflictGroup = KeyBindConflict.MOVEMENT | KeyBindConflict.UI | KeyBindConflict.FLYING | KeyBindConflict.SAILING | KeyBindConflict.BUILD_MODE_1 | KeyBindConflict.KEYBOARD_KEYBIND, name = "OffgridForPaths", canOverride = true @@ -63,6 +63,7 @@ public class FactoryPatch : PatchImpl _cutConveyorBeltKey = KeyBindings.RegisterKeyBinding(new BuiltinKey { key = new CombineKey((int)KeyCode.X, CombineKey.ALT_COMB, ECombineKeyAction.OnceClick, false), + conflictGroup = KeyBindConflict.MOVEMENT | KeyBindConflict.FLYING | KeyBindConflict.SAILING | KeyBindConflict.BUILD_MODE_1 | KeyBindConflict.KEYBOARD_KEYBIND, name = "CutConveyorBelt", canOverride = true }