Remove public prefix from system template paths.

This commit is contained in:
Andrew 2019-11-14 16:42:16 -08:00
parent f8c8e8c731
commit fc8331c13c
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ export class SimpleActorSheet extends ActorSheet {
static get defaultOptions() { static get defaultOptions() {
return mergeObject(super.defaultOptions, { return mergeObject(super.defaultOptions, {
classes: ["worldbuilding", "sheet", "actor"], classes: ["worldbuilding", "sheet", "actor"],
template: "public/systems/worldbuilding/templates/actor-sheet.html", template: "systems/worldbuilding/templates/actor-sheet.html",
width: 600, width: 600,
height: 600 height: 600
}); });

View file

@ -19,7 +19,7 @@ export class SimpleItemSheet extends ItemSheet {
static get defaultOptions() { static get defaultOptions() {
return mergeObject(super.defaultOptions, { return mergeObject(super.defaultOptions, {
classes: ["worldbuilding", "sheet", "item"], classes: ["worldbuilding", "sheet", "item"],
template: "public/systems/worldbuilding/templates/item-sheet.html", template: "systems/worldbuilding/templates/item-sheet.html",
width: 520, width: 520,
height: 480, height: 480,
}); });