Try to get the character sheet actually working
This commit is contained in:
parent
9112b512a3
commit
4cdeb838ce
1 changed files with 6 additions and 4 deletions
|
|
@ -1,8 +1,10 @@
|
||||||
Hooks.once(`init`, () => {
|
import ActorSheetPC from "./module/sheets/pc.mjs";
|
||||||
Actors.unregisterSheet("core", ActorSheet);
|
|
||||||
Actors.registerSheet("dotdungeon", applications.actor.ActorSheet5eCharacter, {
|
console.log(`.dungeon | hello from dotdungeon.mjs`)
|
||||||
|
Hooks.once(`init`, async () => {
|
||||||
|
Actors.registerSheet("dotdungeon-pug", ActorSheetPC, {
|
||||||
types: ["pc", "pug"],
|
types: ["pc", "pug"],
|
||||||
makeDefault: true,
|
makeDefault: true,
|
||||||
label: "DND5E.SheetClassCharacter"
|
canBeDefault: true,
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
Loading…
Add table
Add a link
Reference in a new issue