Derniers fixs
Release Creation / build (release) Failing after 1m29s

This commit is contained in:
2026-05-13 23:07:22 +02:00
parent 2e1c499c23
commit 3fc10ad669
2 changed files with 3 additions and 5 deletions
@@ -685,9 +685,9 @@ export class BaseCharacterSheetL5r5e extends BaseSheetL5r5e {
const data = {
equipped: tmpItem.system.equipped,
};
// Only weapons
// For weapons: sync readied with equipped so both toggle together
if (tmpItem.system.readied !== undefined) {
data.readied = tmpItem.system.readied;
data.readied = type === "equipped" ? tmpItem.system.equipped : tmpItem.system.readied;
}
// Update the Item: we need to manually notify the "Gm Monitor" as the Actor himself is not updated