From eda22bcd9683f3a94e0744da60d23808272c627f Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期一, 13 八月 2018 17:28:00 +0800
Subject: [PATCH] 1528 冰晶矿脉里面角色死亡复活后怪物血条位置显示异常

---
 Core/GameEngine/Model/Config/UniquenessArriveConfig.cs |   44 ++++++++++++++++++++++----------------------
 1 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/Core/GameEngine/Model/Config/UniquenessArriveConfig.cs b/Core/GameEngine/Model/Config/UniquenessArriveConfig.cs
index b96ab96..fd14ead 100644
--- a/Core/GameEngine/Model/Config/UniquenessArriveConfig.cs
+++ b/Core/GameEngine/Model/Config/UniquenessArriveConfig.cs
@@ -9,32 +9,32 @@
 namespace TableConfig {
 
     
-	public partial class UniquenessArriveConfig : ConfigBase {
+	public partial class UniquenessArriveConfig : ConfigBase {
+
+		public int ID { get ; private set ; }
+		public int WorldLvNum { get ; private set ; }
+		public int Rank { get ; private set ; }
+		public string Award { get ; private set; } 
 
-		public int ID { get ; private set ; }
-		public int WorldLvNum { get ; private set ; }
-		public int Rank { get ; private set ; }
-		public string Award { get ; private set; } 
-
-		public override string getKey()
-        {
-            return ID.ToString();
+		public override string getKey()
+        {
+            return ID.ToString();
         }
 
 		public override void Parse() {
-			try
-            {
-                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0; 
-			
-				WorldLvNum=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0; 
-			
-				Rank=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0; 
-			
-				Award = rawContents[3].Trim();
-            }
-            catch (Exception ex)
-            {
-                DesignDebug.Log(ex);
+			try
+            {
+                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0; 
+			
+				WorldLvNum=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0; 
+			
+				Rank=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0; 
+			
+				Award = rawContents[3].Trim();
+            }
+            catch (Exception ex)
+            {
+                DesignDebug.Log(ex);
             }
 		}
 	

--
Gitblit v1.8.0