Fix ui.warn

This commit is contained in:
Vincent Vandemeulebrouck 2020-12-15 23:53:32 +01:00
parent 96f58c65e3
commit 537cc005ad

View File

@ -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;
}