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/PriorBundleConfig.cs | 38 +++++++++++++++++++-------------------
1 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/Core/GameEngine/Model/Config/PriorBundleConfig.cs b/Core/GameEngine/Model/Config/PriorBundleConfig.cs
index 41cd2d3..d83fe8d 100644
--- a/Core/GameEngine/Model/Config/PriorBundleConfig.cs
+++ b/Core/GameEngine/Model/Config/PriorBundleConfig.cs
@@ -9,29 +9,29 @@
namespace TableConfig {
- public partial class PriorBundleConfig : ConfigBase {
+ public partial class PriorBundleConfig : ConfigBase {
+
+ public int id { get ; private set ; }
+ public string AssetABName { get ; private set; }
+ public int AssetType { get ; private set ; }
- public int id { get ; private set ; }
- public string AssetABName { get ; private set; }
- public int AssetType { 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;
-
- AssetABName = rawContents[1].Trim();
-
- AssetType=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
- }
- catch (Exception ex)
- {
- DesignDebug.Log(ex);
+ try
+ {
+ id=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
+
+ AssetABName = rawContents[1].Trim();
+
+ AssetType=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
+ }
+ catch (Exception ex)
+ {
+ DesignDebug.Log(ex);
}
}
--
Gitblit v1.8.0