forked from public/foundryvtt-reve-de-dragon
		
	Fix: privilégier le nom exact
This commit is contained in:
		| @@ -190,10 +190,13 @@ export class RdDItemCompetence extends Item { | |||||||
|     if (competences.length == 0) { |     if (competences.length == 0) { | ||||||
|       return undefined; |       return undefined; | ||||||
|     } |     } | ||||||
|     const competence = competences[0]; |     let competence = competences.find(it => Grammar.toLowerCaseNoAccent(it.name) == name); | ||||||
|     if (competences.length>1) { |     if (!competence) { | ||||||
|       const names = competences.map(it => it.name).reduce((a, b) => `${a}<br>${b}`); |       competence = competences[0]; | ||||||
|       ui.notifications.info(`Plusieurs compétences possibles:<br>${names}<br>La première sera choisie: ${competence.name}`); |       if (competences.length>1) { | ||||||
|  |         const names = competences.map(it => it.name).reduce((a, b) => `${a}<br>${b}`); | ||||||
|  |         ui.notifications.info(`Plusieurs compétences possibles:<br>${names}<br>La première sera choisie: ${competence.name}`); | ||||||
|  |       } | ||||||
|     } |     } | ||||||
|     return competence; |     return competence; | ||||||
|   } |   } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user