diff --git a/module/rdd-calendrier.js b/module/rdd-calendrier.js index 401a08e7..bc6d7eab 100644 --- a/module/rdd-calendrier.js +++ b/module/rdd-calendrier.js @@ -271,7 +271,6 @@ export class RdDCalendrier extends Application { let chiffreAstral = this.getCurrentNombreAstral(); let heureCourante = this.calendrier.heureRdD; let ecartChance = (hn + chiffreAstral - heureCourante)%12; - console.log("ajustementAstrologique", heureNaissance, hn, chiffreAstral, heureCourante, ecartChance); switch (ecartChance) { case 0: return 4; @@ -281,7 +280,7 @@ export class RdDCalendrier extends Application { } } else { - ui.notifications.warn(, this.data.name + " n'a pas d'heure de naissance, ou elle est incorrecte"); + ui.notifications.warn(this.data.name + " n'a pas d'heure de naissance, ou elle est incorrecte"); } return 0; }