Item review and commit

This commit is contained in:
2023-01-04 22:43:01 +01:00
parent a91eb3d7bd
commit 521d14c263
12 changed files with 55 additions and 45 deletions

View File

@ -43,7 +43,7 @@ export class Hero6Utility {
return __locationNames[key]
})
Handlebars.registerHelper('isSkillCustom', function (key) {
if (key == "custom" || key == "background" || key == "combat" ) {
if (key == "custom" || key == "background" ) {
return true;
}
return false
@ -158,6 +158,7 @@ export class Hero6Utility {
'systems/fvtt-hero-system-6/templates/partials/partial-actor-equipment.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-item-cost.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-power-equipment-cost.hbs',
'systems/fvtt-hero-system-6/templates/partials/partial-item-hasroll.hbs',
]
return loadTemplates(templatePaths);
}