Update the way that the force rerender calls the render method

This commit is contained in:
Eldritch-Oliver 2025-10-05 15:24:11 -06:00
parent 98b429f941
commit 2497c492bf
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ export class AllItemSheetV1 extends GenericAppMixin(HandlebarsApplicationMixin(I
await super._processSubmitData(...args);
if (this.document.system.forceRerender) {
await this.render(false);
await this.render();
};
};
// #endregion

View file

@ -55,7 +55,7 @@ export class ArmourSheet extends GenericAppMixin(HandlebarsApplicationMixin(Item
await super._processSubmitData(...args);
if (this.document.system.forceRerender) {
await this.render(false);
await this.render();
};
};