[Fix] V13 - Companion Fixes (#1840)

* Fixed companion initial max stress. Cleaned up prepareData flow

* Clamped adversary resources
This commit is contained in:
WBHarry 2026-04-26 11:20:20 +02:00 committed by GitHub
parent cfd9950aae
commit 3157fd450f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 24 additions and 21 deletions

View file

@ -60,14 +60,4 @@ export default class DhCreature extends BaseDataActor {
}
}
}
prepareDerivedData() {
const minLimitResource = resource => {
if (resource) resource.value = Math.min(resource.value, resource.max);
};
minLimitResource(this.resources.stress);
minLimitResource(this.resources.hitPoints);
minLimitResource(this.resources.hope);
}
}