From accaedaa73fa53edd3284e675bd8f0b06f9a0f33 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期五, 19 九月 2025 14:38:35 +0800
Subject: [PATCH] 0312 武将洗炼数字转化调整
---
Main/System/HeroUI/HeroGiftWashWin.cs | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Main/System/HeroUI/HeroGiftWashWin.cs b/Main/System/HeroUI/HeroGiftWashWin.cs
index 2df32d7..d736dd8 100644
--- a/Main/System/HeroUI/HeroGiftWashWin.cs
+++ b/Main/System/HeroUI/HeroGiftWashWin.cs
@@ -89,7 +89,7 @@
int useCount = HeroUIManager.Instance.GetTalentLockUseWashCount(hero);
var itemCount = PackManager.Instance.GetItemCountByID(PackType.Item, HeroUIManager.Instance.washItemID);
itemCountText.text = UIHelper.AppendColor(itemCount >= useCount ? TextColType.Green : TextColType.Red,
- itemCount + "/" + useCount);
+ UIHelper.ReplaceLargeNum(itemCount) + "/" + useCount);
}
else
{
--
Gitblit v1.8.0