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); + } } } }