Main/System/MainLevel/MainLevelDropCell.cs
@@ -52,8 +52,15 @@ } int curValue = 0; MainLevelManager.Instance.m_DailyBootyDict.TryGetValue(itemID, out curValue); 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)); } } }