From 537cc005ad694c24def1a09f716b16eb16cfa854 Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Tue, 15 Dec 2020 23:53:32 +0100 Subject: [PATCH] Fix ui.warn --- module/rdd-calendrier.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; }