少年修仙传客户端代码仓库
hch
2020-10-30 f0c5a5b134c4796534601aed80dcd8f226747cb5
0312 上架拍卖行100级前会弹拍卖界面
1个文件已修改
36 ■■■■ 已修改文件
System/Auction/AuctionModel.cs 36 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Auction/AuctionModel.cs
@@ -1,15 +1,15 @@
//--------------------------------------------------------
//    [Author]:           第二世界
//    [  Date ]:           Monday, February 25, 2019
//--------------------------------------------------------
//--------------------------------------------------------
//    [Author]:           第二世界
//    [  Date ]:           Monday, February 25, 2019
//--------------------------------------------------------
using System;
using System.Collections.Generic;
using Snxxz.UI;
using System.Linq;
using System.Linq;
namespace Snxxz.UI
{
{
    public class AuctionModel : Model, IBeforePlayerDataInitialize, IPlayerLoginOk
    {
        Dictionary<string, AuctionItem> m_AuctionItems = new Dictionary<string, AuctionItem>();
@@ -501,7 +501,7 @@
            {
                myAuctionRefresh();
            }
            if (PlayerDatas.Instance.baseData.LV < 150)
            if (PlayerDatas.Instance.baseData.LV < 100)
            {
                if (isPushAuctionItem && isServerPrepare)
                {
@@ -1053,8 +1053,8 @@
            }
            return list;
        }
    }
    }
    public class AuctionItem
    {
        public string itemGuid;
@@ -1083,14 +1083,14 @@
        {
            itemGuid = guid;
        }
    }
    }
    public struct FocusAuctionItem
    {
        public string itemGuid;//物品GUID
        public int itemId;//物品ID
    }
}
    }
}