Preliminary rolls

This commit is contained in:
2021-11-01 22:23:43 +01:00
parent 4452f3826a
commit ea034953a6
15 changed files with 331 additions and 133 deletions

View File

@ -20,11 +20,11 @@ export class BoLItemSheet extends ItemSheet {
get template() {
const path = "systems/bol/templates/item";
// Return a single sheet for all item types.
return `${path}/item-sheet.hbs`;
//return `${path}/item-sheet.hbs`;
// Alternatively, you could use the following return statement to do a
// unique item sheet by type, like `weapon-sheet.html`.
// return `${path}/${this.item.data.type}-sheet.html`;
return `${path}/item-${this.item.data.type}-sheet.hbs`;
}
/* -------------------------------------------- */