From 0780d6f78efd25030fdbb0701a14d43d73a0ebe2 Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期四, 21 三月 2019 09:50:03 +0800
Subject: [PATCH] Merge branch 'master' into Rune

---
 Core/GameEngine/Model/Config/RealmConfig.cs |   22 ++++++++++++++--------
 1 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/Core/GameEngine/Model/Config/RealmConfig.cs b/Core/GameEngine/Model/Config/RealmConfig.cs
index ee62db6..ac6a634 100644
--- a/Core/GameEngine/Model/Config/RealmConfig.cs
+++ b/Core/GameEngine/Model/Config/RealmConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:           Fish
-//    [  Date ]:           Thursday, March 14, 2019
+//    [  Date ]:           Wednesday, March 20, 2019
 //--------------------------------------------------------
 
 using System.Collections.Generic;
@@ -21,6 +21,8 @@
 	public readonly int[] AddAttrType;
 	public readonly int[] AddAttrNum;
 	public readonly int BossID;
+	public readonly long expRate;
+	public readonly long expLimit;
 	public readonly string Img;
 	public readonly int Quality;
 	public readonly int FightPower;
@@ -65,19 +67,23 @@
 
 			int.TryParse(tables[7],out BossID); 
 
-			Img = tables[8];
+			long.TryParse(tables[8],out expRate); 
 
-			int.TryParse(tables[9],out Quality); 
+			long.TryParse(tables[9],out expLimit); 
 
-			int.TryParse(tables[10],out FightPower); 
+			Img = tables[10];
 
-			equipNameIcon = tables[11];
+			int.TryParse(tables[11],out Quality); 
 
-			equips = tables[12];
+			int.TryParse(tables[12],out FightPower); 
 
-			int.TryParse(tables[13],out effectId); 
+			equipNameIcon = tables[13];
 
-			int.TryParse(tables[14],out requireIconEffect); 
+			equips = tables[14];
+
+			int.TryParse(tables[15],out effectId); 
+
+			int.TryParse(tables[16],out requireIconEffect); 
         }
         catch (Exception ex)
         {

--
Gitblit v1.8.0