Merge branch 'main' into feature/Homebrew-Downtime-Actions

This commit is contained in:
WBHarry 2025-07-25 16:35:36 +02:00
commit 86ffca509f
13 changed files with 103 additions and 35 deletions

View file

@ -568,13 +568,7 @@ export default class DhpActor extends Actor {
}
convertDamageToThreshold(damage) {
return damage >= this.system.damageThresholds.severe
? 3
: damage >= this.system.damageThresholds.major
? 2
: damage >= this.system.damageThresholds.minor
? 1
: 0;
return damage >= this.system.damageThresholds.severe ? 3 : damage >= this.system.damageThresholds.major ? 2 : 1;
}
convertStressDamageToHP(resources) {