From f6f6bbe9beff5724e4c3fd00bf333ad4e6029fd7 Mon Sep 17 00:00:00 2001
From: Client_PangDeRong <593317293@qq.com>
Date: 星期四, 20 十二月 2018 20:30:09 +0800
Subject: [PATCH] 5398 子 【开发】【1.4】跨服竞技场 / 【前端】【1.4】跨服竞技场开发

---
 Core/GameEngine/Model/Config/CrossServerArenaConfig.cs |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/Core/GameEngine/Model/Config/CrossServerArenaConfig.cs b/Core/GameEngine/Model/Config/CrossServerArenaConfig.cs
index 1dd49fa..8bdccf2 100644
--- a/Core/GameEngine/Model/Config/CrossServerArenaConfig.cs
+++ b/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)
             {

--
Gitblit v1.8.0