From d5277137dd988a897f12b35df3dc442d2f073b34 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Sat, 27 Mar 2021 14:40:06 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20d=C3=A9pense=20chance=20sur=20appel=20?= =?UTF-8?q?=C3=A0=20la=20chance?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- module/actor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/actor.js b/module/actor.js index 9083fb9f..8817b883 100644 --- a/module/actor.js +++ b/module/actor.js @@ -2282,7 +2282,7 @@ export class RdDActor extends Actor { async chanceActuelleIncDec(value, limit = true) { let chance = Math.max(Misc.templateData(this).compteurs.chance.value + value, 0); if (limit) { - chance = Math.min(chance.value, this.getChance()) + chance = Math.min(chance, this.getChance()) } await this.updateCompteurValue("chance", chance); }