forked from GitHub-Mirrors/foundry-sw5e
Fix find-replace error
Fix typo in find and replace
This commit is contained in:
parent
e6a0cc8066
commit
df456997eb
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ export default class Actor5e extends Actor {
|
|||
}
|
||||
|
||||
// Acquire archetype features
|
||||
const subConfig = clsConfig.archetypees[archetypeName] || {};
|
||||
const subConfig = clsConfig.archetypes[archetypeName] || {};
|
||||
for ( let [l, f] of Object.entries(subConfig.features || {}) ) {
|
||||
l = parseInt(l);
|
||||
if ( (l <= level) && (l > priorLevel) ) ids = ids.concat(f);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue