diff --git a/module/de-draconique.js b/module/de-draconique.js index abfa4d45..4cd5d6bd 100644 --- a/module/de-draconique.js +++ b/module/de-draconique.js @@ -15,8 +15,7 @@ export class DeDraconique extends Roll{ evaluate() { super.evaluate(); const rerolls = Math.ceil(this.total / 8); - this.terms[this.terms.length - 1] = rerolls; - this.results[this.results.length - 1] = rerolls; + this.terms[this.terms.length - 1].number = rerolls; this._total -= rerolls; return this; }