diff --git a/module/actor.js b/module/actor.js index e0d7f51f..02534de7 100644 --- a/module/actor.js +++ b/module/actor.js @@ -2280,7 +2280,7 @@ export class RdDActor extends Actor { /* -------------------------------------------- */ async chanceActuelleIncDec(value, limit = true) { - chance = Math.max(Misc.templateData(this).compteurs.chance.value + value, 0); + let chance = Math.max(Misc.templateData(this).compteurs.chance.value + value, 0); if (limit) { chance = Math.min(chance.value, this.getChance()) }