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/Message/HrefAnalysis.cs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Main/System/Message/HrefAnalysis.cs b/Main/System/Message/HrefAnalysis.cs
index 5103744..ff1c108 100644
--- a/Main/System/Message/HrefAnalysis.cs
+++ b/Main/System/Message/HrefAnalysis.cs
@@ -30,7 +30,7 @@
presentHrefInfo = hrefInfo;
if (RichTextMgr.Inst.presentRichText != null)
{
- presentHrefInfo.unlineColor = UIHelper.GetUIColor(TextColType.Green, RichTextMgr.Inst.presentRichText.colorType == RichText.ColorType.Bright);
+ presentHrefInfo.unlineColor = RichTextMgr.Inst.presentRichText.color;
}
m_StringBuilder.Append(val.Substring(index, match.Groups[1].Index - index));
insertIndex = m_StringBuilder.Length - 3;
@@ -261,7 +261,7 @@
{
colorType = text.colorType == RichText.ColorType.Dark ? 0 : 1;
}
- presentHrefInfo.unlineColor = UIHelper.GetUIColor(quality, colorType == 1);
+ presentHrefInfo.unlineColor = UIHelper.GetUIColorByFunc(quality, colorType == 1);
}
}
break;
--
Gitblit v1.8.0