Fix party sheet rerenders from member updates interfering with currency and note input

This commit is contained in:
Carlos Fernandez 2026-04-16 04:15:26 -04:00
parent 16c07d23bb
commit 179ea05801

View file

@ -113,7 +113,7 @@ export default class DhpActor extends Actor {
_onUpdate(changes, options, userId) { _onUpdate(changes, options, userId) {
super._onUpdate(changes, options, userId); super._onUpdate(changes, options, userId);
for (const party of this.parties) { for (const party of this.parties) {
party.render(); party.render({ parts: ['partyMembers'] });
} }
} }
@ -132,7 +132,7 @@ export default class DhpActor extends Actor {
_onDelete(options, userId) { _onDelete(options, userId) {
super._onDelete(options, userId); super._onDelete(options, userId);
for (const party of this.parties) { for (const party of this.parties) {
party.render(); party.render({ parts: ['partyMembers'] });
} }
} }