少年修仙传客户端代码仓库
client_Hale
2019-06-22 d31a538c60c76f0c0f778dc3d8d1035e4b233f1a
Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
2个文件已修改
6 ■■■■ 已修改文件
System/CrossServerOneVsOne/CrossSeverOneVsOneBuyMatchTimesWin.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/MainInterfacePanel/DialogueDuidanceWin.cs 2 ●●● 补丁 | 查看 | 原始文档 | 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);
            }
        }
System/MainInterfacePanel/DialogueDuidanceWin.cs
@@ -106,7 +106,7 @@
            timer += Time.deltaTime;
            if (timer >= autoContinueSeconds)
            {
                OnSkip();
                EmptyAccepter();
                mainModel.IsSelfMotionTask = true;
            }