From 2de0c64d5d34d89e930f9bce8f6c0272bdec2779 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Tue, 31 Mar 2026 17:25:24 +0200 Subject: [PATCH] FateRoll withfear/withHope wasn't working after merging with v14-Dev. Fixed --- module/dice/fateRoll.mjs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/module/dice/fateRoll.mjs b/module/dice/fateRoll.mjs index ec03715a..114fad59 100644 --- a/module/dice/fateRoll.mjs +++ b/module/dice/fateRoll.mjs @@ -44,13 +44,11 @@ export default class FateRoll extends D20Roll { } get withHope() { - if (!this._evaluatedl) return; - return this.dHope.total >= this.dFear.total; + return this.data.fateType === 'Hope'; } get withFear() { - if (!this._evaluated) return; - return this.dHope.total < this.dFear.total; + return this.data.fateType === 'Fear'; } get totalLabel() {