Update sheet again...

This commit is contained in:
2025-01-19 22:33:51 +01:00
parent 4198bf82be
commit 6d4a12252c
40 changed files with 416 additions and 166 deletions

View File

@ -17,7 +17,7 @@ export default class LethalFantasyActor extends Actor {
const skills = await LethalFantasyUtils.loadCompendium("fvtt-lethal-fantasy.lf-skills")
data.items = data.items || []
for (let skill of skills) {
if (skill.system.category === "layperson" || skill.system.category === "professional") {
if (skill.system.category === "layperson") {
data.items.push(skill.toObject())
}
}