Various fixes
This commit is contained in:
@ -38,10 +38,11 @@ const MAX_NOMBRE_ASTRAL = 12;
|
||||
export class RdDCalendrier extends Application {
|
||||
|
||||
getCalendrier(index) {
|
||||
let month = Math.floor(index / 28) % 12;
|
||||
let calendrier = {
|
||||
heureRdD: 0, // Index dans heuresList
|
||||
minutesRelative: 0,
|
||||
moisRdD: Math.floor(index / 28) % 12,
|
||||
moisRdD: month,
|
||||
jour: (index - (month * 28)) + 1
|
||||
}
|
||||
return calendrier;
|
||||
@ -168,7 +169,11 @@ export class RdDCalendrier extends Application {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
getNombreAstral(indexDate) {
|
||||
const liste = this.listeNombreAstral ?? this._loadListNombreAstral();
|
||||
let liste = this.listeNombreAstral ?? this._loadListNombreAstral();
|
||||
if ( typeof(liste) != 'Array' || liste.length == 0 ) {
|
||||
this.rebuildListeNombreAstral();
|
||||
liste = this.listeNombreAstral;
|
||||
}
|
||||
let astralData = liste.find((nombreAstral, i) => nombreAstral.index == indexDate);
|
||||
if (!astralData?.nombreAstral) {
|
||||
this.rebuildListeNombreAstral();
|
||||
|
Reference in New Issue
Block a user