From 45300c03d2bc6971c5b13168f4de0466ce76a972 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Sat, 26 Jul 2025 19:50:48 +0200 Subject: [PATCH] Added a temp fix for a bug in action healing section --- module/data/fields/actionField.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/module/data/fields/actionField.mjs b/module/data/fields/actionField.mjs index 00197e53..287d53ee 100644 --- a/module/data/fields/actionField.mjs +++ b/module/data/fields/actionField.mjs @@ -215,7 +215,10 @@ export function ActionMixin(Base) { await this.parent.updateSource({ [path]: updates }, options); result = this.parent; } else { - result = await this.item.update({ [path]: updates }, options); + /* Fix me - For some reason updating the "healing" section in particular doesn't work without this */ + await this.item.update({ [path]: updates }, options); + await this.item.updateSource({ [path]: updates }, options); + result = this.item; } return this.inCollection