【修复】修复refgroup可默认性的计算bug

main v2022.1.0
walon 2022-01-06 16:32:35 +08:00
parent a560c23c67
commit 8cd9e5f247
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ namespace Luban.Job.Cfg.Validators
{ {
throw new Exception($"结构:'{hostTypeName}' 字段:'{fieldName}' refgroup:'{actualTable}' ref:'{actualRefTableName}' 不存在"); throw new Exception($"结构:'{hostTypeName}' 字段:'{fieldName}' refgroup:'{actualTable}' ref:'{actualRefTableName}' 不存在");
} }
CompileTable(def, subTable, refIndex, ignoreDefault && refIgnoreDefault); CompileTable(def, subTable, refIndex, ignoreDefault || refIgnoreDefault);
} }
anyRefGroup = true; anyRefGroup = true;
} }