少年修仙传客户端代码仓库
client_linchunjie
2019-06-22 9880ebba233362cf25fbe6da4bb2db24f93cdd17
4212 【BUG】【2.0】购买跨服pk次数,显示了高亮绿色
1个文件已修改
4 ■■■■ 已修改文件
System/CrossServerOneVsOne/CrossSeverOneVsOneBuyMatchTimesWin.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/CrossServerOneVsOne/CrossSeverOneVsOneBuyMatchTimesWin.cs
@@ -54,11 +54,11 @@
            m_BuyTimes.gameObject.SetActive(remainBuyTimes > 0);
            if (remainBuyTimes > 0)
            {
                m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Green, remainBuyTimes.ToString()), crossServerModel.buyMaxMatchNum);
                m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Green, remainBuyTimes.ToString(), true), crossServerModel.buyMaxMatchNum);
            }
            else
            {
                m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Red, remainBuyTimes.ToString()), crossServerModel.buyMaxMatchNum);
                m_TodayBuyTimes.text = Language.Get("TimesBuyLanguage1", UIHelper.AppendColor(TextColType.Red, remainBuyTimes.ToString(), true), crossServerModel.buyMaxMatchNum);
            }
        }