moved items tab of char sheet into partial

This commit is contained in:
Gesina Schwalbe 2020-12-28 20:38:02 +01:00
parent bdae6b2f2f
commit 47c45ee87d
3 changed files with 32 additions and 27 deletions

View file

@ -31,7 +31,10 @@ Hooks.once("init", async function () {
});
async function registerHandlebarsPartials() {
const templatePaths = ["systems/ds4/templates/item/partials/description.hbs"];
const templatePaths = [
"systems/ds4/templates/item/partials/description.hbs",
"systems/ds4/templates/actor/partials/items.hbs",
];
return loadTemplates(templatePaths);
}