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/HeroUI/HeroUIManager.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Main/System/HeroUI/HeroUIManager.cs b/Main/System/HeroUI/HeroUIManager.cs
index 1992e38..f877583 100644
--- a/Main/System/HeroUI/HeroUIManager.cs
+++ b/Main/System/HeroUI/HeroUIManager.cs
@@ -168,12 +168,12 @@
 
     public string GetCountryIconName(int index)
     {
-        return StringUtility.Contact("herocountry", index.ToString());
+        return StringUtility.Concat("herocountry", index.ToString());
     }
 
     public string GetJobIconName(int index)
     {
-        return StringUtility.Contact("herojob", index.ToString());
+        return StringUtility.Concat("herojob", index.ToString());
     }
 
     public int GetMaxLV(int quality)

--
Gitblit v1.8.0