hch
2026-01-09 a85d2ea7f1f34c2a6abe9e8dd24eb2feabd05c67
266 【内政】古宝系统
2个文件已修改
10 ■■■■ 已修改文件
Main/System/BoneField/BoneFieldManager.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/KnapSack/BackpackData.cs 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/BoneField/BoneFieldManager.cs
@@ -140,7 +140,7 @@
        List<Item> showItems = new List<Item>();
        foreach (var item in result.itemInfo)
        {
            Item tempItem = new Item(item.ItemID, item.Count, _useType: item.BeautyEx + 1);
            Item tempItem = new Item(item.ItemID, item.Count, _useType: item.BeautyEx != 0 ? 2 : 0);
            showItems.Add(tempItem);
        }
        ItemLogicUtility.Instance.ShowGetItem(showItems, isMergeItem: false);
Main/System/KnapSack/BackpackData.cs
@@ -22,13 +22,7 @@
    }
    
    public Item(int _id, long _count, int _quality)
    {
        this.id = _id;
        this.quality = _quality;
        this.useType = 0;
        this.countEx = _count;
    }
    public Item(int _id, long _count, int _useType = 0, int _quality = 0)
    {