From 4c5c0dd6ed408fc6ba19a88f2c038b9f01299a29 Mon Sep 17 00:00:00 2001
From: client_Hale <339726288@qq.com>
Date: 星期五, 31 八月 2018 16:42:54 +0800
Subject: [PATCH] Fixed #3140 前端】副本中,死亡复活后1秒后立即开启自动战斗 配置提交

---
 System/GeneralConfig/GeneralConfig.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/System/GeneralConfig/GeneralConfig.cs b/System/GeneralConfig/GeneralConfig.cs
index fa51a80..8fad424 100644
--- a/System/GeneralConfig/GeneralConfig.cs
+++ b/System/GeneralConfig/GeneralConfig.cs
@@ -478,8 +478,8 @@
                 }
             }
 
-            func = Config.Instance.Get<FuncConfigConfig>("RebornAutoFightDungeon");
-            RebornAutoFightMapID = new List<int>(GetIntArray(func.Numerical1));
+            int[] mapIDs = GetIntArray("RebornAutoFightDungeon");
+            RebornAutoFightMapID = new List<int>(mapIDs);
         }
         catch (Exception ex)
         {

--
Gitblit v1.8.0