From 3bd7f56906e31e8fe0072108c9d4652707b51de8 Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期二, 21 十月 2025 17:59:00 +0800
Subject: [PATCH] 125 战斗 战斗UI

---
 Main/System/Guild/GuildEmblemModel.cs |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/Main/System/Guild/GuildEmblemModel.cs b/Main/System/Guild/GuildEmblemModel.cs
index d50ac7a..4c20f2f 100644
--- a/Main/System/Guild/GuildEmblemModel.cs
+++ b/Main/System/Guild/GuildEmblemModel.cs
@@ -130,13 +130,15 @@
     // 鍒锋柊鏃х殑婵�娲诲垪琛紝鐢ㄤ簬瀵规瘮绾㈢偣鏄剧ず
     public void RefreshOldShowActiveList()
     {
-        oldShowActiveList.Clear();
         for (int i = 0; i < showList.Count; i++)
         {
             //宸茶В閿佺殑
             if (IsUnLock(showList[i]))
             {
-                oldShowActiveList.Add(showList[i]);
+                if (!oldShowActiveList.Contains(showList[i]))
+                {
+                    oldShowActiveList.Add(showList[i]);
+                }
             }
         }
     }

--
Gitblit v1.8.0