Begin work on a non-functional character sheet registration

This commit is contained in:
Oliver-Akins 2023-11-19 22:23:55 -07:00
parent f48f082d86
commit d5b8d106ca

8
dotdungeon.mjs Normal file
View file

@ -0,0 +1,8 @@
Hooks.once(`init`, () => {
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet("dotdungeon", applications.actor.ActorSheet5eCharacter, {
types: ["pc", "pug"],
makeDefault: true,
label: "DND5E.SheetClassCharacter"
});
})