From fdbf8c40dce78d9e747e7300a84df4c82aaacc8c Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期五, 21 二月 2025 01:40:58 +0800
Subject: [PATCH] 10349 【越南】【英文】【BT】【砍树】跨服竞技场优化 - 护盾

---
 Core/GameEngine/Model/Config/AlchemyCountConfig.cs |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Core/GameEngine/Model/Config/AlchemyCountConfig.cs b/Core/GameEngine/Model/Config/AlchemyCountConfig.cs
index 8f9a77d..82d446c 100644
--- a/Core/GameEngine/Model/Config/AlchemyCountConfig.cs
+++ b/Core/GameEngine/Model/Config/AlchemyCountConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:           Fish
-//    [  Date ]:           Wednesday, May 15, 2019
+//    [  Date ]:           2024骞�5鏈�17鏃�
 //--------------------------------------------------------
 
 using System.Collections.Generic;
@@ -8,7 +8,7 @@
 using System.Threading;
 using System;
 using UnityEngine;
-
+using LitJson;
 
 public partial class AlchemyCountConfig
 {
@@ -47,7 +47,7 @@
     {   
 		if (!inited)
         {
-            Debug.Log("AlchemyCountConfig 杩樻湭瀹屾垚鍒濆鍖栥��");
+            Debug.LogError("AlchemyCountConfig 杩樻湭瀹屾垚鍒濆鍖栥��");
             return null;
         }
 		
@@ -85,9 +85,9 @@
         values.AddRange(configs.Values);
 
         var keys = new List<string>(rawDatas.Keys);
-        foreach (var key in keys)
+        for (int i = 0; i < keys.Count; i++)
         {
-            values.Add(Get(key));
+            values.Add(Get(keys[i]));
         }
 
         return values;

--
Gitblit v1.8.0