From 8f917c36405bca32f714d2c4b868cd8d1866b1cd Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Mon, 1 Dec 2025 15:41:47 +0100 Subject: [PATCH] Fixed so that AttackActions with a save will not stop the workflow of the fields if save automation is not on (#1353) --- module/data/fields/action/saveField.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/data/fields/action/saveField.mjs b/module/data/fields/action/saveField.mjs index 19486b85..473286b1 100644 --- a/module/data/fields/action/saveField.mjs +++ b/module/data/fields/action/saveField.mjs @@ -46,7 +46,7 @@ export default class SaveField extends fields.SchemaField { if (SaveField.getAutomation() !== CONFIG.DH.SETTINGS.actionAutomationChoices.never.id || force) { targets ??= config.targets.filter(t => !config.hasRoll || t.hit); await SaveField.rollAllSave.call(this, targets, config.event, message); - } else return false; + } else return; } /**