From c2b2376699a5ca5efbb6a7091f1fc162382ead36 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 25 Apr 2026 14:04:26 -0600 Subject: [PATCH] Update the template paths to point at the right subfolder structure --- module/apps/PlayerSheet.mjs | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/module/apps/PlayerSheet.mjs b/module/apps/PlayerSheet.mjs index 63c9ac9..c3ffbcd 100644 --- a/module/apps/PlayerSheet.mjs +++ b/module/apps/PlayerSheet.mjs @@ -48,13 +48,17 @@ export class PlayerSheet extends tabs: { template: filePath(`templates/generic/tabs.hbs`) }, content: { template: filePath(`templates/PlayerSheet/content.hbs`) }, attributeTab: { - template: filePath(`templates/PlayerSheet/attributes-tab.hbs`), - }, - items: { - template: filePath(`templates/PlayerSheet/item-lists.hbs`), + template: filePath(`templates/PlayerSheet/tabs/attributes/lists.hbs`), scrollable: [``], templates: [ - filePath(`templates/PlayerSheet/item.hbs`), + filePath(`templates/PlayerSheet/tabs/attributes/attribute.hbs`), + ], + }, + items: { + template: filePath(`templates/PlayerSheet/tabs/items/lists.hbs`), + scrollable: [``], + templates: [ + filePath(`templates/PlayerSheet/tabs/items/item.hbs`), ], }, };