From 23021cb033aaeb597923530223eed46c7ef0dd1d Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期四, 23 五月 2019 18:06:37 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
---
Core/GameEngine/Model/Config/HazyRegionConfig.cs | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/Core/GameEngine/Model/Config/HazyRegionConfig.cs b/Core/GameEngine/Model/Config/HazyRegionConfig.cs
index c7fcdd4..072726c 100644
--- a/Core/GameEngine/Model/Config/HazyRegionConfig.cs
+++ b/Core/GameEngine/Model/Config/HazyRegionConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: Fish
-// [ Date ]: Monday, May 20, 2019
+// [ Date ]: Thursday, May 23, 2019
//--------------------------------------------------------
using System.Collections.Generic;
@@ -24,7 +24,8 @@
public readonly int alchemyLevel;
public readonly int[] reward;
public readonly int[] rewardState;
- public readonly string PortraitID;
+ public readonly string PortraitID;
+ public readonly int star;
public HazyRegionConfig()
{
@@ -68,7 +69,9 @@
int.TryParse(rewardStateStringArray[i],out rewardState[i]);
}
- PortraitID = tables[11];
+ PortraitID = tables[11];
+
+ int.TryParse(tables[12],out star);
}
catch (Exception ex)
{
@@ -152,6 +155,7 @@
path = AssetVersionUtility.GetAssetFilePath("config/HazyRegion.txt");
}
+ configs.Clear();
var tempConfig = new HazyRegionConfig();
var preParse = tempConfig is IConfigPostProcess;
--
Gitblit v1.8.0