From fa356bd7f849840382430326026e8561229f0579 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Sun, 8 Jan 2023 20:33:52 +0100 Subject: [PATCH] Fix calcul des heures de chance --- module/rdd-calendrier.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/rdd-calendrier.js b/module/rdd-calendrier.js index 32bb13ea..c77c4324 100644 --- a/module/rdd-calendrier.js +++ b/module/rdd-calendrier.js @@ -355,7 +355,7 @@ export class RdDCalendrier extends Application { } getHeureChance(heure) { - return heure + (this.getCurrentNombreAstral() ?? 1) - 1; + return heure + (this.getCurrentNombreAstral() ?? 0); } /* -------------------------------------------- */