diff --git a/module/dialog-gerer-herbes.js b/module/dialog-gerer-herbes.js index 820ec96c..c76dcfc4 100644 --- a/module/dialog-gerer-herbes.js +++ b/module/dialog-gerer-herbes.js @@ -37,7 +37,7 @@ export class DialogGererHerbes extends HandlebarsApplicationMixin(ApplicationV2) super(options) this.actor = options.actor this._onItemChange = (item) => { - if (item.parent === this.actor) this.render(true) + if (item.parent === this.actor) this.render() } Hooks.on("updateItem", this._onItemChange) Hooks.on("createItem", this._onItemChange) diff --git a/module/dialog-gerer-ingredients.js b/module/dialog-gerer-ingredients.js index 7207d644..a240be9a 100644 --- a/module/dialog-gerer-ingredients.js +++ b/module/dialog-gerer-ingredients.js @@ -35,7 +35,7 @@ export class DialogGererIngredients extends HandlebarsApplicationMixin(Applicati super(options) this.actor = options.actor this._onItemChange = (item) => { - if (item.parent === this.actor) this.render(true) + if (item.parent === this.actor) this.render() } Hooks.on("updateItem", this._onItemChange) Hooks.on("createItem", this._onItemChange) diff --git a/module/dialog-gerer-potions.js b/module/dialog-gerer-potions.js index 5bd0a5b4..6367df4a 100644 --- a/module/dialog-gerer-potions.js +++ b/module/dialog-gerer-potions.js @@ -35,7 +35,7 @@ export class DialogGererPotions extends HandlebarsApplicationMixin(ApplicationV2 super(options) this.actor = options.actor this._onItemChange = (item) => { - if (item.parent === this.actor) this.render(true) + if (item.parent === this.actor) this.render() } Hooks.on("updateItem", this._onItemChange) Hooks.on("createItem", this._onItemChange)