Update CECHostPlayer.Inventory.cs

This commit is contained in:
HungDK
2026-02-27 10:06:24 +07:00
parent f85f1add54
commit 34f2dd5a2b
@@ -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);
}
}
}
}