From 783c9e76bb8d82cd51605566fce46495a9f99442 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期四, 30 十月 2025 17:17:36 +0800
Subject: [PATCH] 0312 使用物品和货币的显示默认不转换数值缩写

---
 Main/Utility/UIHelper.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Main/Utility/UIHelper.cs b/Main/Utility/UIHelper.cs
index 21ee7a0..025b3ef 100644
--- a/Main/Utility/UIHelper.cs
+++ b/Main/Utility/UIHelper.cs
@@ -1156,7 +1156,7 @@
     }
 
     //鏄剧ず鏁伴噺, 鏍煎紡n/m, 瓒冲缁胯壊涓嶈冻绾㈣壊
-    public static string ShowUseMoney(int moneyType, long useCnt, bool showLargeNum = true)
+    public static string ShowUseMoney(int moneyType, long useCnt, bool showLargeNum = false)
     {
         long cnt = GetMoneyCnt(moneyType);
         if (showLargeNum)
@@ -1165,7 +1165,7 @@
             return AppendColor(useCnt <= cnt ? TextColType.Green : TextColType.Red, $"{cnt}/{useCnt}");
     }
 
-    public static string ShowUseItem(PackType type, int itemId, long useCnt, bool showLargeNum = true)
+    public static string ShowUseItem(PackType type, int itemId, long useCnt, bool showLargeNum = false)
     {
         long cnt = PackManager.Instance.GetItemCountByID(type, itemId);
         if (showLargeNum)

--
Gitblit v1.8.0