Add crafting skills

This commit is contained in:
2023-01-24 22:53:35 +01:00
parent 57dc0505cc
commit 00c8ae8f85
9 changed files with 112 additions and 35 deletions

View File

@@ -27,4 +27,14 @@ export class Avd12Combat extends Combat {
}
}
/* -------------------------------------------- */
_onDelete() {
let combatants = this.combatants.contents
for (let c of combatants) {
let actor = game.actors.get(c.actorId)
actor.clearInitiative()
}
super._onDelete()
}
}