Try to get the character sheet actually working

This commit is contained in:
Oliver-Akins 2023-11-20 23:08:31 -07:00
parent 9112b512a3
commit 4cdeb838ce

View file

@ -1,8 +1,10 @@
Hooks.once(`init`, () => {
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("dotdungeon", applications.actor.ActorSheet5eCharacter, {
import ActorSheetPC from "./module/sheets/pc.mjs";
console.log(`.dungeon | hello from dotdungeon.mjs`)
Hooks.once(`init`, async () => {
Actors.registerSheet("dotdungeon-pug", ActorSheetPC, {
types: ["pc", "pug"],
makeDefault: true,
label: "DND5E.SheetClassCharacter"
canBeDefault: true,
});
})