From 34f2dd5a2b9b16067d75a63ffcc84b85dd16346c Mon Sep 17 00:00:00 2001 From: HungDK <> Date: Fri, 27 Feb 2026 10:06:24 +0700 Subject: [PATCH] Update CECHostPlayer.Inventory.cs --- Assets/Scripts/CECHostPlayer.Inventory.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Assets/Scripts/CECHostPlayer.Inventory.cs b/Assets/Scripts/CECHostPlayer.Inventory.cs index d6df0ed2b6..8358cfec06 100644 --- a/Assets/Scripts/CECHostPlayer.Inventory.cs +++ b/Assets/Scripts/CECHostPlayer.Inventory.cs @@ -52,7 +52,11 @@ namespace BrewMonster foreach (var it in items) { if (it != null && it.Slot >= 0 && it.Slot < size) + { + if (it.Content != null && it.Content.Length > 0) + it.SetItemInfo(it.Content, it.Content.Length); inv.SetItem(it.Slot, it); + } } } }