From fc8331c13c654a21e40adace75fb7f7d9f78a4c4 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 14 Nov 2019 16:42:16 -0800 Subject: [PATCH] Remove public prefix from system template paths. --- module/actor-sheet.js | 2 +- module/item-sheet.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/actor-sheet.js b/module/actor-sheet.js index d7c5882..c85c46e 100644 --- a/module/actor-sheet.js +++ b/module/actor-sheet.js @@ -21,7 +21,7 @@ export class SimpleActorSheet extends ActorSheet { static get defaultOptions() { return mergeObject(super.defaultOptions, { classes: ["worldbuilding", "sheet", "actor"], - template: "public/systems/worldbuilding/templates/actor-sheet.html", + template: "systems/worldbuilding/templates/actor-sheet.html", width: 600, height: 600 }); diff --git a/module/item-sheet.js b/module/item-sheet.js index c65bd9f..88e5cc8 100644 --- a/module/item-sheet.js +++ b/module/item-sheet.js @@ -19,7 +19,7 @@ export class SimpleItemSheet extends ItemSheet { static get defaultOptions() { return mergeObject(super.defaultOptions, { classes: ["worldbuilding", "sheet", "item"], - template: "public/systems/worldbuilding/templates/item-sheet.html", + template: "systems/worldbuilding/templates/item-sheet.html", width: 520, height: 480, });