mirror of
https://github.com/babalae/bettergi-scripts-list.git
synced 2026-03-31 05:59:51 +08:00
fix(FullyAutoAndSemiAutoTools): 修复加载层级比较逻辑错误
- 修正了模板匹配设置中的加载层级判断条件 - 将比较逻辑从 loadingLevel > level 更新为 loadingLevel > level+1 - 确保级别检查逻辑与预期行为一致
This commit is contained in:
@@ -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 &&
|
||||
|
||||
Reference in New Issue
Block a user