hch
2025-09-05 277e13e374f7b647388e9df8e5540cca9e3b1128
Main/System/KnapSack/Logic/SinglePack.cs
@@ -182,6 +182,22 @@
        return list;
    }
    public List<string> GetItemGUIDListById(int itemId)
    {
        var list = new List<string>();
        if (itemIDs.ContainsKey(itemId))
        {
            foreach (var index in itemIDs[itemId])
            {
                var item = items[index];
                list.Add(item.guid);
            }
        }
        return list;
    }
    public long GetCountById(int itemId, bool includeAuction = true)
    {
        long count = 0;