From 26e3c38aa974fee887a283151ee2c78bbb89b684 Mon Sep 17 00:00:00 2001 From: Dapoulp <74197441+Dapoulp@users.noreply.github.com> Date: Fri, 25 Jul 2025 18:04:56 +0200 Subject: [PATCH] Fix Healing Action target (#409) --- module/data/action/healingAction.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/data/action/healingAction.mjs b/module/data/action/healingAction.mjs index b2cdf385..48aa4146 100644 --- a/module/data/action/healingAction.mjs +++ b/module/data/action/healingAction.mjs @@ -28,7 +28,7 @@ export default class DHHealingAction extends DHBaseAction { healing: game.i18n.localize(CONFIG.DH.GENERAL.healingTypes[this.healing.applyTo].label) }), roll: formulas, - targets: (data.system?.targets ?? data.targets).filter(t => t.hit), + targets: systemData.targets?.filter(t => t.hit), messageType: 'healing', source: systemData.source, data: this.getRollData(),