From 5ead5803a518d10a1297af17296102266fddf7ee Mon Sep 17 00:00:00 2001 From: WBHarry Date: Mon, 1 Dec 2025 13:22:23 +0100 Subject: [PATCH] Fixed so that AttackActions with a save will not stop the workflow of the fields if save automation is not on --- 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; } /**