From 8148a0c20477734cf48b9d45e3790e1e74f0bf31 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Thu, 4 Jun 2026 20:07:52 +0200 Subject: [PATCH] Corrected comments --- module/data/item/ancestry.mjs | 2 +- module/data/item/community.mjs | 2 +- module/data/item/subclass.mjs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/module/data/item/ancestry.mjs b/module/data/item/ancestry.mjs index 011893df..eae1136c 100644 --- a/module/data/item/ancestry.mjs +++ b/module/data/item/ancestry.mjs @@ -45,7 +45,7 @@ export default class DHAncestry extends BaseDataItem { /**@inheritdoc */ async getDescriptionData() { - // Preload all class features for acquisition from the cache + // Preload all ancestry features for acquisition from the cache // todo: make feature acquisition async and replace feature helpers for methods await fromUuids(this._source.features.map(f => f.item)); diff --git a/module/data/item/community.mjs b/module/data/item/community.mjs index 3d662c91..6f4470b8 100644 --- a/module/data/item/community.mjs +++ b/module/data/item/community.mjs @@ -27,7 +27,7 @@ export default class DHCommunity extends BaseDataItem { /**@inheritdoc */ async getDescriptionData() { - // Preload all class features for acquisition from the cache + // Preload all community features for acquisition from the cache // todo: make feature acquisition async and replace feature helpers for methods await fromUuids(this._source.features); diff --git a/module/data/item/subclass.mjs b/module/data/item/subclass.mjs index 55b078c2..934b55d3 100644 --- a/module/data/item/subclass.mjs +++ b/module/data/item/subclass.mjs @@ -91,7 +91,7 @@ export default class DHSubclass extends BaseDataItem { ? game.i18n.localize(CONFIG.DH.ACTOR.abilities[this.spellcastingTrait].label) : null; - // Preload all class features for acquisition from the cache + // Preload all subclass features for acquisition from the cache // todo: make feature acquisition async and replace feature helpers for methods await fromUuids(this._source.features.map(f => f.item));