From 3fe8e834c821d6d48513b78b93121d9a6b00e41d Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Thu, 22 Apr 2021 20:12:29 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20d=C3=A9=20draconique=200.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- module/de-draconique.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; }