fixes auto destruction by WebStorm

feature/meta
macniel 2025-10-09 21:06:07 +02:00
parent 63225b921a
commit 92218e9adc
1 changed files with 3 additions and 1 deletions

View File

@ -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) {
}
}
}