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();
}
}
}
/**

View file

@ -15,7 +15,7 @@
.application.sheet.daggerheart.actor.dh-style.party {
.tab {
height: -webkit-fill-available;
max-height: 300px;
max-height: 514px;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: light-dark(@dark-blue, @golden) transparent;