From 0a92be0942663807aa7a477cd9437236e96f4ec2 Mon Sep 17 00:00:00 2001 From: sladecraven Date: Mon, 7 Jun 2021 22:52:42 +0200 Subject: [PATCH] COrrection XP competence/sort/carac et chiffres astro --- module/actor.js | 7 ++++--- module/rdd-calendrier.js | 16 +++++++--------- system.json | 2 +- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/module/actor.js b/module/actor.js index 194106a9..bb55043e 100644 --- a/module/actor.js +++ b/module/actor.js @@ -810,7 +810,8 @@ export class RdDActor extends Actor { if (caracName == 'Taille') { return; } - await this.update({ [`data.carac.${caracName}.xp`]: caracXP ?? 0 }); + // if ( isNaN(caracXP) || typeof(caracXP) != 'number') caracXP = 0; + //await this.update({ [`data.carac.${caracName}.xp`]: caracXP }); this.checkCaracXP(caracName); } @@ -896,7 +897,7 @@ export class RdDActor extends Actor { async updateCompetenceXP(compName, newXp) { let comp = this.getCompetence(compName); if (comp) { - newXp = newXp ?? 0; + if ( isNaN(newXp) || typeof(newXp) != 'number') newXp = 0; this.checkCompetenceXP(compName, newXp); const update = { _id: comp.id, 'data.xp': newXp }; await this.updateEmbeddedDocuments('Item', [update]); // Updates one EmbeddedEntity @@ -911,7 +912,7 @@ export class RdDActor extends Actor { async updateCompetenceXPSort(compName, compValue) { let comp = this.getCompetence(compName); if (comp) { - compValue = compValue ?? 0; + if ( isNaN(compValue) || typeof(compValue) != 'number') compValue = 0; const update = { _id: comp.id, 'data.xp_sort': compValue }; await this.updateEmbeddedDocuments('Item', [update]); // Updates one EmbeddedEntity this.updateExperienceLog("XP Sort", compValue, "XP modifié en sort de " + compName); diff --git a/module/rdd-calendrier.js b/module/rdd-calendrier.js index 52c6f7ca..0e4b3f48 100644 --- a/module/rdd-calendrier.js +++ b/module/rdd-calendrier.js @@ -187,20 +187,18 @@ export class RdDCalendrier extends Application { async rebuildListeNombreAstral() { if (game.user.isGM) { let jourCourant = this.getCurrentDayIndex(); - let jourFin = jourCourant + 12; let newList = []; - for (const na of this.listeNombreAstral) { - let index = na?.index; - if (index && index >= jourCourant && index < jourFin) { - newList[index - jourCourant] = na; - } - } for (let i = 0; i < 12; i++) { - if (newList[i] == undefined) { - newList[i] = await this.ajouterNombreAstral(jourCourant + i); + let dayIndex = jourCourant + i; + let na = this.listeNombreAstral.find( n => n.index == dayIndex); + if ( na ) { + newList[i] = duplicate(na); + } else { + newList[i] = await this.ajouterNombreAstral(dayIndex); } } + console.log("SAVE list", newList, jourCourant); this.listeNombreAstral = newList; game.settings.set("foundryvtt-reve-de-dragon", "liste-nombre-astral", this.listeNombreAstral); } diff --git a/system.json b/system.json index c2e1b1ff..ffdfbe88 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "name": "foundryvtt-reve-de-dragon", "title": "Rêve de Dragon", "description": "Rêve de Dragon RPG for FoundryVTT", - "version": "1.4.26", + "version": "1.4.27", "manifestPlusVersion": "1.0.0", "minimumCoreVersion": "0.8.0", "compatibleCoreVersion": "0.8.99",