@@ -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
|
||||
|
||||
Reference in New Issue
Block a user