少年修仙传客户端代码仓库
client_Wu Xijin
2018-12-20 0f01fc6f8e61d71e663a37e81d2d56f59f690f30
Core/GameEngine/Model/Config/CrossServerArenaConfig.cs
@@ -1,6 +1,6 @@
//--------------------------------------------------------
//    [Author]:         第二世界
//    [  Date ]:         Wednesday, December 12, 2018
//    [  Date ]:         Thursday, December 20, 2018
//--------------------------------------------------------
using UnityEngine;
@@ -13,8 +13,9 @@
      public int DanLV { get ; private set ; }
      public string Name { get ; private set; } 
      public string IconKey { get ; private set; }
      public int LVUpScore { get ; private set ; }
      public string DayAwardList { get ; private set; }
      public string DanLVAwardList { get ; private set; }
      public string SeasonAwardList { get ; private set; } 
      public override string getKey()
@@ -29,11 +30,13 @@
         
            Name = rawContents[1].Trim();
         
            LVUpScore=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
            IconKey = rawContents[2].Trim();
         
            DayAwardList = rawContents[3].Trim();
            LVUpScore=IsNumeric(rawContents[3]) ? int.Parse(rawContents[3]):0;
         
            SeasonAwardList = rawContents[4].Trim();
            DanLVAwardList = rawContents[4].Trim();
            SeasonAwardList = rawContents[5].Trim();
            }
            catch (Exception ex)
            {