Finish the primary design of the item tab, still awaiting an equipped toggle

This commit is contained in:
Oliver 2026-03-19 23:31:50 -06:00
parent 704ff4672a
commit 2b0fbdfa8b
6 changed files with 60 additions and 14 deletions

View file

@ -243,11 +243,6 @@ export class PlayerSheet extends
totalWeight = toPrecision(totalWeight, 2);
ctx.totalWeight = totalWeight + weightUnit;
console.log({
totalWeight,
carryCapacity: this.actor.system.carryCapacity,
percent: Math.round(totalWeight / this.actor.system.carryCapacity * 100),
});
ctx.carryCapacityPercent = Math.round(totalWeight / this.actor.system.carryCapacity * 100);
};