Main/Config/PartialConfigs/PlayerPropertyConfig.cs
@@ -135,7 +135,7 @@
    //largeNumFormat 大数值格式:0 默认原数值 1 按万或者(K)显示 2 按6位数以上(才转换大数值,根据情况可统一调整)
    //largeNumFormat 大数值格式:0 默认原数值 1 按万或者(K)显示 2 按6位数以上(才转换大数值,根据情况可统一调整)3 超过亿缩写
    public static string GetValueDescription(int id, long value, int largeNumFormat = 2)
    {
        return GetValueDescriptionEx(id, value, largeNumFormat);
@@ -185,6 +185,17 @@
                label = result.ToString();
            }
        }
        else if (largeNumFormat == 3)
        {
            if (result > 100000000)
            {
                label = UIHelper.ReplaceLargeNum(result);
            }
            else
            {
                label = result.ToString();
            }
        }
        else
        {
            label = result.ToString();