Fixed party height and resource armor update

This commit is contained in:
WBHarry 2025-11-10 16:53:14 +01:00
parent df0ed5dc0f
commit 0c8f9616f8
2 changed files with 7 additions and 1 deletions

View file

@ -131,6 +131,12 @@ export default class DHArmor extends AttachableItem {
_onUpdate(a, b, c) {
super._onUpdate(a, b, c);
if (this.actor?.type === 'character') {
for (const party of this.actor.parties) {
party.render();
}
}
}
/**