Fix archetype failure msg
This commit is contained in:
parent
0e96de76b3
commit
7b1693c7f5
1 changed files with 1 additions and 1 deletions
|
@ -371,7 +371,7 @@ const atree_validate = new (class extends ComputeNode {
|
||||||
if ('archetype_req' in ability && ability.archetype_req !== 0) {
|
if ('archetype_req' in ability && ability.archetype_req !== 0) {
|
||||||
const others = archetype_count.get(ability.archetype);
|
const others = archetype_count.get(ability.archetype);
|
||||||
if (others < ability.archetype_req) {
|
if (others < ability.archetype_req) {
|
||||||
_add.push([node, abil.archetype+': '+others+' < '+abil.archetype_req, false])
|
_add.push([node, ability.archetype+': '+others+' < '+ability.archetype_req, false])
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue