少年修仙传客户端代码仓库
client_linchunjie
2019-04-03 5877524b4349d980242748cba0566b471485025e
3335 拍卖行修改
1个文件已修改
8 ■■■■ 已修改文件
System/Auction/AuctionModel.cs 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Auction/AuctionModel.cs
@@ -342,13 +342,13 @@
            }
            var index = config.TypeId;
            if (config.ChooseItem1 != null && config.ChooseItem1.Length > 0)
            if (config.ChooseItem1 != null && childClassifyIndex.x < config.ChooseItem1.Length)
            {
                index += childClassifyIndex.x;
                index += config.ChooseItem1[childClassifyIndex.x];
            }
            if (config.ChooseItem2 != null && config.ChooseItem2.Length > 0)
            if (config.ChooseItem2 != null && childClassifyIndex.y < config.ChooseItem2.Length)
            {
                index += childClassifyIndex.y;
                index += config.ChooseItem2[childClassifyIndex.y];
            }
            return index;
        }