diff --git a/module/sheets/AspectSheet.mjs b/module/sheets/AspectSheet.mjs index dd22b47..f14d57b 100644 --- a/module/sheets/AspectSheet.mjs +++ b/module/sheets/AspectSheet.mjs @@ -15,7 +15,6 @@ export class AspectSheet extends ItemSheet { activateListeners(html) { super.activateListeners(html); - if (this.document.isEmbedded) return; if (!this.isEditable) return; console.debug(`.dungeon | Adding event listeners for Item: ${this.id}`); }; diff --git a/module/sheets/GenericItemSheet.mjs b/module/sheets/GenericItemSheet.mjs index 25735ea..7299004 100644 --- a/module/sheets/GenericItemSheet.mjs +++ b/module/sheets/GenericItemSheet.mjs @@ -14,7 +14,6 @@ export class GenericItemSheet extends ItemSheet { activateListeners(html) { super.activateListeners(html); - if (this.document.isEmbedded) return; if (!this.isEditable) return; console.debug(`.dungeon | Adding event listeners for Generic Item: ${this.id}`); }; diff --git a/module/sheets/SpellSheet.mjs b/module/sheets/SpellSheet.mjs index 724cc58..e8d63c4 100644 --- a/module/sheets/SpellSheet.mjs +++ b/module/sheets/SpellSheet.mjs @@ -17,7 +17,6 @@ export class SpellSheet extends GenericItemSheet { activateListeners(html) { super.activateListeners(html); - if (this.document.isEmbedded) return; if (!this.isEditable) return; console.debug(`.dungeon | Adding event listeners for Generic Item: ${this.id}`); };