From 0f01fc6f8e61d71e663a37e81d2d56f59f690f30 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期四, 20 十二月 2018 20:51:15 +0800
Subject: [PATCH] Merge branch 'Cross_Server' of http://192.168.0.87:10010/r/snxxz_scripts into Cross_Server
---
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