From a9cb211dbafe5cb613762a7e4e508010d2147dea Mon Sep 17 00:00:00 2001 From: Vincent Vandemeulebrouck Date: Wed, 18 Dec 2024 17:28:50 +0100 Subject: [PATCH] =?UTF-8?q?Ne=20pas=20afficher=20l'=C3=A2ge=20si=200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dans la feuille simplifiée, ne pas afficher l'âge si 0 (correspondant en général à des acteurs non liés) --- module/actor/export-scriptarium/mapping.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/actor/export-scriptarium/mapping.js b/module/actor/export-scriptarium/mapping.js index 966f4055..34b59453 100644 --- a/module/actor/export-scriptarium/mapping.js +++ b/module/actor/export-scriptarium/mapping.js @@ -279,7 +279,7 @@ export class Mapping { const race = ['', 'humain'].includes(Grammar.toLowerCaseNoAccent(actor.system.race)) ? '' : (actor.system.race + ' ') const heure = actor.system.heure const hn = `${sexeFeminin} à l'heure ${RdDTimestamp.definition(heure).avecArticle}` - const age = actor.system.age ? `${actor.system.age} ans` : undefined + const age = (actor.system.age && actor.system.age >0) ? `${actor.system.age} ans` : undefined const taille = actor.system.taille const poids = actor.system.poids const cheveux = actor.system.cheveux ? `cheveux ${actor.system.cheveux}` : undefined