From 92218e9adc74426cd67c81caca8ba71d35f5e8d3 Mon Sep 17 00:00:00 2001 From: macniel Date: Thu, 9 Oct 2025 21:06:07 +0200 Subject: [PATCH] fixes auto destruction by WebStorm --- src/module/sheets/specialAbilitySheet.mjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/module/sheets/specialAbilitySheet.mjs b/src/module/sheets/specialAbilitySheet.mjs index 7f979941..a1c6bb08 100644 --- a/src/module/sheets/specialAbilitySheet.mjs +++ b/src/module/sheets/specialAbilitySheet.mjs @@ -43,7 +43,9 @@ export class SpecialAbilitySheet extends ItemSheet { super.activateListeners(html); // Everything below here is only needed if the sheet is editable - if (!this.isEditable) + if (!this.isEditable) { + + } } }