From 9483c0e3b423ef1fddd9f40d81d06ff98f283d12 Mon Sep 17 00:00:00 2001 From: demenik Date: Tue, 9 Dec 2025 18:01:00 +0100 Subject: [PATCH] feat: Derive `Debug` for `ItemStack` --- src/features/inventory/components.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/inventory/components.rs b/src/features/inventory/components.rs index b2ac89f..ab3f75a 100644 --- a/src/features/inventory/components.rs +++ b/src/features/inventory/components.rs @@ -102,7 +102,7 @@ impl ItemType { } } -#[derive(Component, Serialize, Deserialize, Clone)] +#[derive(Component, Serialize, Deserialize, Clone, Debug)] pub struct ItemStack { pub item_type: ItemType, pub amount: u32,