From d2ac719bbc81ba860c4356eb6929372483c4a7d4 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期一, 20 十月 2025 00:34:36 +0800
Subject: [PATCH] 65 子 【公会】基础主体 / 【公会】基础主体-客户端

---
 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