From c3bbfe2736a773f9f03fa25c0575608e9ee6c13c Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 09 十二月 2025 17:12:38 +0800
Subject: [PATCH] 0312 优化字符串拼接 - 改名

---
 Main/System/Message/RichNormalEvent.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Main/System/Message/RichNormalEvent.cs b/Main/System/Message/RichNormalEvent.cs
index 97e8ad4..68499c9 100644
--- a/Main/System/Message/RichNormalEvent.cs
+++ b/Main/System/Message/RichNormalEvent.cs
@@ -360,7 +360,7 @@
         //             if (fightPoint < (ulong)targetValue)
         //             {
         //                 var label = dic.ContainsKey("replacelabel1") ? dic["replacelabel1"] : string.Empty;
-        //                 return UIHelper.AppendColor(TextColType.Red, StringUtility.Contact(label, fightPoint, "/", targetValue), colorType == 1);
+        //                 return UIHelper.AppendColor(TextColType.Red, StringUtility.Concat(label, fightPoint, "/", targetValue), colorType == 1);
         //             }
         //             else
         //             {
@@ -411,9 +411,9 @@
         //                 if (property != 0)
         //                 {
         //                     var propertyConfig = PlayerPropertyConfig.Get(property);
-        //                     label = StringUtility.Contact(propertyConfig.Name, "锛�");
+        //                     label = StringUtility.Concat(propertyConfig.Name, "锛�");
         //                 }
-        //                 return UIHelper.AppendColor(TextColType.Red, StringUtility.Contact(label, point, "/", targetValue), colorType == 1);
+        //                 return UIHelper.AppendColor(TextColType.Red, StringUtility.Concat(label, point, "/", targetValue), colorType == 1);
         //             }
         //             else
         //             {
@@ -454,7 +454,7 @@
         //             if (!satisfy)
         //             {
         //                 var label = dic.ContainsKey("replacelabel1") ? dic["replacelabel1"] : string.Empty;
-        //                 return UIHelper.AppendColor(TextColType.Red, StringUtility.Contact(label, point, "/", targetValue), colorType == 1);
+        //                 return UIHelper.AppendColor(TextColType.Red, StringUtility.Concat(label, point, "/", targetValue), colorType == 1);
         //             }
         //             else
         //             {

--
Gitblit v1.8.0