diff --git a/src/module/Items/SkillSheet.mjs b/src/module/Items/SkillSheet.mjs index 07c68a42..5d1ee832 100644 --- a/src/module/Items/SkillSheet.mjs +++ b/src/module/Items/SkillSheet.mjs @@ -19,25 +19,4 @@ export class SkillSheet extends ItemSheet { get template() { return `${path}/item-${this.item.type}-sheet.hbs`; } - - /** @override */ - getData() { - // Retrieve base data structure. - const context = super.getData(); - - // Use a safe clone of the item data for further operations. - const itemData = context.data; - - // Retrieve the roll data for TinyMCE editors. - context.rollData = this.item.getRollData(); - - // Add the item's data to context.data for easier access, as well as flags. - context.system = itemData.system; - context.flags = itemData.flags; - - // Prepare active effects for easier access - context.effects = prepareActiveEffectCategories(this.item.effects); - - return context; - } } \ No newline at end of file