diff --git a/module/sheets/CharacterSheet.js b/module/sheets/CharacterSheet.js index fa25ddc..ac375be 100644 --- a/module/sheets/CharacterSheet.js +++ b/module/sheets/CharacterSheet.js @@ -12,4 +12,14 @@ export class CharacterSheet extends ActorSheet { } ); }; + + activateListeners(html) { + super.activateListeners(html); + + if (!this.isEditable) return; + console.debug(`.dungeon | Adding event listeners for Actor${this.id}`) + + // Modal openings + html.find(`button.stat-prompt`).on("click", () => {}); + } } \ No newline at end of file