mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Added BP calculation and tooltip breakdown of BP sources * Added Modifiers * Fixed automatic battleToggles * Corrected 'NoToughies' conditional * Fixed GM-only visibility * Fixed combatant isNPC
6 lines
176 B
JavaScript
6 lines
176 B
JavaScript
export default class DhCombatant extends Combatant {
|
|
/**@inheritdoc */
|
|
get isNPC() {
|
|
return this.actor?.isNPC ?? (!this.actor || !this.hasPlayerOwner);
|
|
}
|
|
}
|