From 2142bbf1f6962e3f0a104759b58ef6b4b995fd76 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期四, 11 十二月 2025 21:44:29 +0800
Subject: [PATCH] 0312 X秒未点击挑战BOSS引导提醒;loading图文字提醒;登录首次打开武将列表界面显示全体属性提醒;修复非上阵武将吞噬没红点问题

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

diff --git a/Main/System/GeneralConfig/GeneralDefine.cs b/Main/System/GeneralConfig/GeneralDefine.cs
index 1bc4cd7..36843ce 100644
--- a/Main/System/GeneralConfig/GeneralDefine.cs
+++ b/Main/System/GeneralConfig/GeneralDefine.cs
@@ -39,6 +39,7 @@
 
     public static Dictionary<int, string> itemIconDict { get; private set; }
     public static int mainRightFuncOpenFuncID { get; private set; }
+    public static string[] loadingTips { get; private set; }
 
     public static void Init()
     {
@@ -86,6 +87,9 @@
 
             inGameDownLoadLevelCheckPoints = new List<int>(GetIntArray("InGameDownLoad"));
             inGameDownLoadHighLevel = GetInt("InGameDownLoad", 2);
+
+            config = FuncConfigConfig.Get("LoadingTip");
+            loadingTips = JsonMapper.ToObject<string[]>(config.Numerical1);
         }
         catch (Exception ex)
         {

--
Gitblit v1.8.0