From 89343a7a0909e5244a3b69c4db1294de4536243b Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期一, 15 十二月 2025 18:15:22 +0800
Subject: [PATCH] 262 幻境阁系统-客户端 新增仅适用武将解锁的头像和形象的红点移除规则

---
 Main/System/Recharge/ExpSecretCollectionManager.cs |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/Main/System/Recharge/ExpSecretCollectionManager.cs b/Main/System/Recharge/ExpSecretCollectionManager.cs
index 669eec8..ea7097b 100644
--- a/Main/System/Recharge/ExpSecretCollectionManager.cs
+++ b/Main/System/Recharge/ExpSecretCollectionManager.cs
@@ -49,16 +49,13 @@
     public Redpoint redPointLLMJ = new Redpoint(MainRedDot.RightFuncRedpoint, MainRedDot.RedPoint_LLMJKey);
     void UpdateRedpoint()
     {
+        redPointLLMJ.state = RedPointState.None;
         if (m_MJLV == 0) return;
         var nextConfig = LLMJConfig.Get(m_MJLV + 1);
         if (nextConfig == null) return;
         if (m_Zhanchui >= nextConfig.CostWarhammer)
         {
             redPointLLMJ.state = RedPointState.Simple;
-        }
-        else
-        {
-            redPointLLMJ.state = RedPointState.None;
         }
     }
 }

--
Gitblit v1.8.0