From 332610ed31d7ac8ca75ab9dfdf47f480d1829b10 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期五, 07 十一月 2025 12:42:04 +0800
Subject: [PATCH] 236 子 【福利内容】每日任务/每周任务/章节奖励 / 【福利内容】每日任务/每周任务/章节奖励-客户端
---
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