From 96ef5c5d7f01b6d5f13849e457da69932b30b331 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Xavier=20Guillois?= Date: Wed, 17 May 2023 15:36:18 +0200 Subject: [PATCH] fixed errors --- module/sheets/creature-sheet.mjs | 2 +- module/system/handlebars-manager.mjs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/module/sheets/creature-sheet.mjs b/module/sheets/creature-sheet.mjs index 3d4e985..270812c 100644 --- a/module/sheets/creature-sheet.mjs +++ b/module/sheets/creature-sheet.mjs @@ -5,7 +5,7 @@ import { TotemActorSheet } from "./actor-sheet.mjs"; * Extend the basic ActorSheet with some very simple modifications * @extends {ActorSheet} */ -export class TotemActorSheet extends ActorSheet { +export class TotemCreatureSheet extends ActorSheet { /** @override */ static get defaultOptions() { diff --git a/module/system/handlebars-manager.mjs b/module/system/handlebars-manager.mjs index e906482..7a69c8c 100644 --- a/module/system/handlebars-manager.mjs +++ b/module/system/handlebars-manager.mjs @@ -7,9 +7,9 @@ return loadTemplates([ // Actor partials. - "systems/totem/templates/actor/parts/actor-traits.html", - "systems/totem/templates/actor/parts/actor-background.html", - "systems/totem/templates/actor/parts/actor-skills.html", + "systems/totem/templates/actor/parts/actor-spells.html", + "systems/totem/templates/actor/parts/actor-features.html", + // "systems/totem/templates/actor/parts/actor-skills.html", "systems/totem/templates/actor/parts/actor-items.html", "systems/totem/templates/actor/parts/actor-effects.html", ]);