少年修仙传客户端代码仓库
client_Wu Xijin
2018-09-21 83262a7f5fee1b6f41e2d2f8b817d29870f36af8
Core/GameEngine/Model/Config/DogzConfig.cs
@@ -18,7 +18,7 @@
      public int[] BaseAttrValues;
      public int[] HelpBattleSkills;
      public int FightPowerEx { get ; private set ; }
      public string EquipPlaceColorList { get ; private set; }
      public int[] EquipPlaceColorList;
      public override string getKey()
        {
@@ -57,7 +57,12 @@
         
            FightPowerEx=IsNumeric(rawContents[6]) ? int.Parse(rawContents[6]):0; 
         
            EquipPlaceColorList = rawContents[7].Trim();
            string[] EquipPlaceColorListStringArray = rawContents[7].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries);
            EquipPlaceColorList = new int[EquipPlaceColorListStringArray.Length];
            for (int i=0;i<EquipPlaceColorListStringArray.Length;i++)
            {
                int.TryParse(EquipPlaceColorListStringArray[i],out EquipPlaceColorList[i]);
            }
            }
            catch (Exception ex)
            {