RC-72 | Step | Display & Input

This commit is contained in:
Oliver-Akins 2024-12-30 22:25:33 -07:00
parent cf3cb7357b
commit e29c5a8cd0
4 changed files with 43 additions and 1 deletions

View file

@ -66,9 +66,11 @@ export class HeroSummaryCardV1 extends GenericSheetMixin(HandlebarsApplicationMi
static async prepareLevelData(ctx) {
ctx.level = {
glory: ctx.actor.system.level.glory,
step: ctx.actor.system.level.step,
};
if (ctx.meta.limited) {
ctx.level.glory = `?`;
ctx.level.step = `?`;
};
return ctx;
};