diff --git a/common/src/comp/inventory/item.rs b/common/src/comp/inventory/item.rs index 0b5eb75450..00c35348e3 100644 --- a/common/src/comp/inventory/item.rs +++ b/common/src/comp/inventory/item.rs @@ -207,17 +207,17 @@ pub enum ItemKind { Consumable { kind: Consumable, effect: Effect, - #[serde(skip, default = "default_amount")] + #[serde(default = "default_amount")] amount: u32, }, Utility { kind: Utility, - #[serde(skip, default = "default_amount")] + #[serde(default = "default_amount")] amount: u32, }, Ingredient { kind: Ingredient, - #[serde(skip, default = "default_amount")] + #[serde(default = "default_amount")] amount: u32, }, }