removed obsolete sheet
Pull Request Check / testing (pull_request) Successful in 17s Details

pull/13/head 0.1.10-import-test
Jendrik 2025-09-28 12:28:53 +02:00
parent cda4118fb8
commit 7038d2c5c0
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
/**
* Extend the basic ActorSheet with some very simple modifications
* @extends {ActorSheet}
*/
export class CharacterSheet extends ActorSheet {
/** @override */
static get defaultOptions() {
return foundry.utils.mergeObject(super.defaultOptions, {
template: "systems/DSA_4-1/templates/sheets/character-sheet.hbs",
width: 600,
height: 600,
});
}
}
Handlebars.registerHelper("formatCharacter", function(actor) {
return JSON.stringify(actor, null, 4);
});