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", ]);