From 258234852dd4c5e7c70df9b9fe2a3f91e53d965a Mon Sep 17 00:00:00 2001
From: yyl <yyl>
Date: 星期四, 20 十一月 2025 15:29:12 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.1.20:10010/r/Project_SG_scripts

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