From ec0a5394196df9b6d86b18723c2fe9c80434c503 Mon Sep 17 00:00:00 2001 From: yan Date: Sun, 25 Jan 2026 02:49:56 +0800 Subject: [PATCH] =?UTF-8?q?fix(FullyAutoAndSemiAutoTools):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E5=8A=A0=E8=BD=BD=E5=B1=82=E7=BA=A7=E6=AF=94=E8=BE=83?= =?UTF-8?q?=E9=80=BB=E8=BE=91=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修正了模板匹配设置中的加载层级判断条件 - 将比较逻辑从 loadingLevel > level 更新为 loadingLevel > level+1 - 确保级别检查逻辑与预期行为一致 --- repo/js/FullyAutoAndSemiAutoTools/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repo/js/FullyAutoAndSemiAutoTools/main.js b/repo/js/FullyAutoAndSemiAutoTools/main.js index 8d50604ac..26ad075cd 100644 --- a/repo/js/FullyAutoAndSemiAutoTools/main.js +++ b/repo/js/FullyAutoAndSemiAutoTools/main.js @@ -581,7 +581,7 @@ async function loadUidSettingsMap(uidSettingsMap) { return (loadingLevel === level + 1) } // 检查级别是否小于等于加载层级 - return (loadingLevel > level) + return (loadingLevel > level-1) }) templateMatchSettings = [...templateMatchSettings, ...levelSettings] while (templateMatchSettings.length > 0 &&