From b0098574a02fc5bbf8197f78fc97adc5b64355b7 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Fri, 22 Dec 2023 02:21:00 +0100 Subject: [PATCH] Fix: refoulement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le refoulement ne fonctionnait plus. Merci à javascript+VSCode pour l'incapacité de fournir de l'analyse de code statique... --- module/actor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/actor.js b/module/actor.js index 1c2e0e75..d687af52 100644 --- a/module/actor.js +++ b/module/actor.js @@ -896,7 +896,7 @@ export class RdDActor extends RdDBaseActorSang { /* -------------------------------------------- */ async ajouterRefoulement(value = 1, refouler) { - const refoulement = this.system.reve.refoulement.value + value; + let refoulement = this.system.reve.refoulement.value + value; const roll = new Roll("1d20"); await roll.evaluate({ async: true }); await roll.toMessage({ flavor: `${this.name} refoule ${refouler} pour ${value} points de refoulement (total: ${refoulement})` });