New source found from dndbeyond.com

This commit is contained in:
2025-06-25 01:00:21 -07:00
parent 0b403376c5
commit 2c657770de
6 changed files with 25 additions and 10 deletions
@@ -145,11 +145,14 @@ export function deriveClassFeatureGroups(charClass, classFeatures, appContext) {
}
return acc;
}, []);
const higherLevelFeatures = classFeatures.filter((feature) => ClassFeatureAccessors.getRequiredLevel(feature) > getLevel(charClass) &&
(appContext === null || !ClassFeatureUtils.getHideInContext(feature, appContext)));
return {
activeFeatures,
visibleFeatures,
orderedFeatures,
uniqueFeatures,
higherLevelFeatures,
};
}
/**