#77 Gestion alchimie

This commit is contained in:
sladecraven 2021-01-07 22:29:43 +01:00
parent f4dc42743a
commit 69b2907078
2 changed files with 11 additions and 9 deletions

View File

@ -10,6 +10,7 @@ export class RdDAlchimie {
let manip = duplicate(recette.data.manipulation); let manip = duplicate(recette.data.manipulation);
let reg1 = new RegExp(/@(\w*){([\w\-]+)}/ig); let reg1 = new RegExp(/@(\w*){([\w\-]+)}/ig);
let matchArray = manip.match( reg1 ); let matchArray = manip.match( reg1 );
if ( matchArray ) {
for( let matchStr of matchArray) { for( let matchStr of matchArray) {
let reg2 = new RegExp(/@(\w*){([\w\-]+)}/i); let reg2 = new RegExp(/@(\w*){([\w\-]+)}/i);
let result = matchStr.match(reg2); let result = matchStr.match(reg2);
@ -20,6 +21,7 @@ export class RdDAlchimie {
manip = manip.replace( result[0], replacement); manip = manip.replace( result[0], replacement);
} }
} }
}
recette.data.manipulation_update = manip; recette.data.manipulation_update = manip;
} }

View File

@ -2,7 +2,7 @@
"name": "foundryvtt-reve-de-dragon", "name": "foundryvtt-reve-de-dragon",
"title": "Rêve de Dragon", "title": "Rêve de Dragon",
"description": "Rêve de Dragon RPG for FoundryVTT", "description": "Rêve de Dragon RPG for FoundryVTT",
"version": "1.2.4", "version": "1.2.5",
"minimumCoreVersion": "0.7.5", "minimumCoreVersion": "0.7.5",
"compatibleCoreVersion": "0.7.8", "compatibleCoreVersion": "0.7.8",
"templateVersion": 80, "templateVersion": 80,