diff --git a/module/applications/sheets/character.mjs b/module/applications/sheets/character.mjs index a114e1c1..8570b5f3 100644 --- a/module/applications/sheets/character.mjs +++ b/module/applications/sheets/character.mjs @@ -647,7 +647,7 @@ export default class CharacterSheet extends DaggerheartSheet(ActorSheetV2) { } static async makeDeathMove() { - if (this.document.system.resources.hitPoints.value === this.document.system.resources.hitPoints.max) { + if (this.document.system.resources.hitPoints.value >= this.document.system.resources.hitPoints.maxTotal) { await new DhpDeathMove(this.document).render(true); } }