From 2c915c82e886e5be2218633cbe139d55e7fabc73 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 23 Apr 2026 17:20:12 -0600 Subject: [PATCH] Fix a bug with the item groups having the formatted totalWeight instead of group-only weight --- module/apps/PlayerSheet.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/apps/PlayerSheet.mjs b/module/apps/PlayerSheet.mjs index a2c4aad..2ae276d 100644 --- a/module/apps/PlayerSheet.mjs +++ b/module/apps/PlayerSheet.mjs @@ -345,7 +345,7 @@ export class PlayerSheet extends ctx.itemGroups.push({ name: groupName.titleCase(), items: preparedItems, - weight: config.weightFormatter(totalWeight), + weight: config.weightFormatter(summedWeight), }); };