From 2497c492bfcb6e20ca05d78e673ba3610c6d7249 Mon Sep 17 00:00:00 2001 From: Eldritch-Oliver Date: Sun, 5 Oct 2025 15:24:11 -0600 Subject: [PATCH] Update the way that the force rerender calls the render method --- module/Apps/ItemSheets/AllItemSheetV1.mjs | 2 +- module/Apps/ItemSheets/ArmourSheet.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/Apps/ItemSheets/AllItemSheetV1.mjs b/module/Apps/ItemSheets/AllItemSheetV1.mjs index 3ac26ba..0608fde 100644 --- a/module/Apps/ItemSheets/AllItemSheetV1.mjs +++ b/module/Apps/ItemSheets/AllItemSheetV1.mjs @@ -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 diff --git a/module/Apps/ItemSheets/ArmourSheet.mjs b/module/Apps/ItemSheets/ArmourSheet.mjs index 9201e16..7570413 100644 --- a/module/Apps/ItemSheets/ArmourSheet.mjs +++ b/module/Apps/ItemSheets/ArmourSheet.mjs @@ -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(); }; };