From 352ea270469b6d2efdbe8bfcb5971e38a846cd52 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Wed, 30 Jul 2025 15:58:25 +0200 Subject: [PATCH] Fixed so that the rally dice will at least show up in the roll selection --- module/dice/dualityRoll.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/dice/dualityRoll.mjs b/module/dice/dualityRoll.mjs index 8ad61996..ab6264c6 100644 --- a/module/dice/dualityRoll.mjs +++ b/module/dice/dualityRoll.mjs @@ -64,7 +64,7 @@ export default class DualityRoll extends D20Roll { } setRallyChoices() { - return this.data?.parent?.effects.reduce((a, c) => { + return this.data?.parent?.appliedEffects.reduce((a, c) => { const change = c.changes.find(ch => ch.key === 'system.bonuses.rally'); if (change) a.push({ value: c.id, label: change.value }); return a;