[V14] Update duality and fate chat commands (#1759)

* Update duality and fate chat commands for v14

* FateRoll withfear/withHope wasn't working after merging with v14-Dev. Fixed

---------

Co-authored-by: WBHarry <williambjrklund@gmail.com>
This commit is contained in:
Carlos Fernandez 2026-03-31 11:26:45 -04:00 committed by GitHub
parent f156b12d79
commit 259b66236c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 84 additions and 80 deletions

View file

@ -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() {