From 8ad0800aa926e02e05f63aa5cbf030251850a293 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期四, 22 五月 2025 18:11:46 +0800
Subject: [PATCH] 登录流程前的所有预备流程

---
 Main/Config/Configs/EmojiPackConfig.cs |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/Main/Config/Configs/EmojiPackConfig.cs b/Main/Config/Configs/EmojiPackConfig.cs
index 471272c..f70d35d 100644
--- a/Main/Config/Configs/EmojiPackConfig.cs
+++ b/Main/Config/Configs/EmojiPackConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:           YYL
-//    [  Date ]:           2025骞�5鏈�19鏃�
+//    [  Date ]:           2025骞�5鏈�22鏃�
 //--------------------------------------------------------
 
 using System.Collections.Generic;
@@ -31,6 +31,7 @@
 
     public override void LoadConfig(string input)
     {
+        try {
         string[] tables = input.Split('\t');
         int.TryParse(tables[0],out EmojiPackID); 
 
@@ -49,5 +50,10 @@
 			UnlockNeedItemList = JsonMapper.ToObject<int[][]>(tables[7].Replace("(", "[").Replace(")", "]")); 
 
 			Descriptive = tables[8];
+        }
+        catch (Exception exception)
+        {
+            Debug.LogError(exception);
+        }
     }
 }

--
Gitblit v1.8.0