New labels. Time to print them somewhere.

This commit is contained in:
Nikhil Nagarajan 2025-12-15 16:03:00 -05:00
parent 9b4249b100
commit d2f9b3912b
7 changed files with 58 additions and 1 deletions

View file

@ -31,4 +31,11 @@ export default class FeatureSheet extends DHBaseItemSheet {
labelPrefix: 'DAGGERHEART.GENERAL.Tabs'
}
};
//Might be wrong location but testing out if here is okay.
/**@override */
async _prepareContext(options) {
const context = await super._prepareContext(options);
context.featureFormChoices = CONFIG.DH.ITEM.featureForm;
return context;
}
}