fix: 修复冲突天赋漏填出错

This commit is contained in:
Vick Scarlet
2025-05-17 21:17:21 +08:00
parent b82da6c9a7
commit 5c0fe56915

View File

@@ -73,6 +73,9 @@ class Talent {
for(const e of exclude) {
if(talent == e) return talent;
}
for (const e of this.get(talent).exclude) {
if (excludeId == e) return talent
}
}
return null;
}