少年修仙传客户端代码仓库
client_Wu Xijin
2018-08-30 691d21c1e4fe997f03294ea770b2309b32a36baf
3098 去除最近服的测试代码
1个文件已修改
28 ■■■■■ 已修改文件
System/Login/ServerListCenter.cs 28 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Login/ServerListCenter.cs
@@ -18,9 +18,11 @@
    public ServerInfoCommon serverInfoCommon { get; private set; }
    ServerData m_CurrentServer;
    public ServerData currentServer {
    public ServerData currentServer
    {
        get { return m_CurrentServer; }
        set {
        set
        {
            m_CurrentServer = value;
            m_SelectedServer = true;
@@ -34,11 +36,14 @@
    }
    string m_CurrentServerGroup = string.Empty;
    public string currentServerGroup {
        get {
    public string currentServerGroup
    {
        get
        {
            return m_CurrentServerGroup;
        }
        set {
        set
        {
            if (m_CurrentServerGroup != value)
            {
                m_CurrentServerGroup = value;
@@ -55,7 +60,8 @@
    bool serverListPlayerPartGot = false;
    bool serverListCommonPartGot = false;
    public bool serverListGot {
    public bool serverListGot
    {
        get { return serverListCommonPartGot; }
    }
@@ -66,11 +72,14 @@
    public event Action serverSelectEvent;
    const string LOGIN_SERVER = "LoginServer";
    public int localSaveServerId {
        get {
    public int localSaveServerId
    {
        get
        {
            return LocalSave.GetInt(LOGIN_SERVER);
        }
        set {
        set
        {
            LocalSave.SetInt(LOGIN_SERVER, value);
        }
    }
@@ -213,7 +222,6 @@
    public void RequestServerListPlayer(string _accountName)
    {
        _accountName = "alee18";
        accountNameBuf = _accountName;
        var url = string.Empty;
        var tables = new Dictionary<string, string>();