From 11187d7c6a46a82f10b3d097b8291e59d721b50c Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期三, 10 十二月 2025 20:30:57 +0800
Subject: [PATCH] 0312 修改隐私协议的弹出时机为android;增加登录音乐;掉落武将经验改无限

---
 Main/System/MainLevel/MainLevelDropCell.cs |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/Main/System/MainLevel/MainLevelDropCell.cs b/Main/System/MainLevel/MainLevelDropCell.cs
index 3a4f34e..af83a4a 100644
--- a/Main/System/MainLevel/MainLevelDropCell.cs
+++ b/Main/System/MainLevel/MainLevelDropCell.cs
@@ -52,8 +52,15 @@
             }
             int curValue = 0;
             MainLevelManager.Instance.m_DailyBootyDict.TryGetValue(itemID, out curValue);
-            dropValueText.text = UIHelper.AppendColor(curValue >= maxValue ? TextColType.Red : TextColType.Green,
-            UIHelper.ReplaceLargeNum(curValue) + "/" + UIHelper.ReplaceLargeNum(maxValue));
+            if (maxValue > 1000000000)
+            {
+                dropValueText.text = UIHelper.AppendColor(TextColType.Green, UIHelper.ReplaceLargeNum(curValue) + "/" + Language.Get("L1138"));
+            }
+            else
+            {
+                dropValueText.text = UIHelper.AppendColor(curValue >= maxValue ? TextColType.Red : TextColType.Green,
+                UIHelper.ReplaceLargeNum(curValue) + "/" + UIHelper.ReplaceLargeNum(maxValue));
+            }
             
         }
     }

--
Gitblit v1.8.0