From 3b2a6bb9047cfce9f501593b3669a9c1af6c5df4 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期三, 05 十一月 2025 17:40:23 +0800
Subject: [PATCH] 130 战斗修改回合样式
---
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