少年修仙传客户端代码仓库
client_Wu Xijin
2019-01-15 d4bc6ff243540e9c807574b54ea135dd0066f65f
Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
3个文件已修改
10 ■■■■■ 已修改文件
System/Mount/PlayerMountDatas.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/OpenServerActivity/FlashRushToBuyModel.cs 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/OpenServerActivity/FlashSaleItemCell.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Mount/PlayerMountDatas.cs
@@ -224,7 +224,7 @@
            }
        }
    }
    private const int Redpoint_key1 = 1010301;
    private const int Redpoint_key1 = 1050101;
    public Redpoint redPointStre1 = new Redpoint(MainRedDot.RedPoint_MountPackKey, Redpoint_key1);//坐骑外观
    private const int Redpoint_key2 = 1050102;
    public Redpoint redPointStre2 = new Redpoint(MainRedDot.RedPoint_MountPackKey, Redpoint_key2);//坐骑兽魂
System/OpenServerActivity/FlashRushToBuyModel.cs
@@ -163,7 +163,9 @@
            for (int i = 0; i < appointmentInfo.GoodsCount; i++)
            {
                var saleItemInfo = appointmentInfo.GoodsList[i];
                if (appointmentInfo.GoodsCount < 2 && saleItemInfo.State == 1)
                if (appointmentInfo.GoodsCount < 2
                    && saleItemInfo.State == 1
                    && appointmentInfo.IsAll != 1)
                {
                    SysNotifyMgr.Instance.ShowTip("FlashRushToBuy1");
                }
System/OpenServerActivity/FlashSaleItemCell.cs
@@ -189,8 +189,8 @@
            int fullSeverRemain = 0;
            int personalRemain = 0;
            int sellState = GetSellSate(out fullSeverRemain,out personalRemain);
            string fullSeverRemainStr = fullSeverRemain > 0 ? fullSeverRemain.ToString() : UIHelper.AppendStringColor(TextColType.Red, fullSeverRemain.ToString());
            string personalRemainStr = personalRemain > 0 ? personalRemain.ToString() : UIHelper.AppendStringColor(TextColType.Red, personalRemain.ToString());
            string fullSeverRemainStr = fullSeverRemain > 0 ? UIHelper.AppendStringColor(TextColType.Green, fullSeverRemain.ToString(),true) : UIHelper.AppendStringColor(TextColType.Red, fullSeverRemain.ToString());
            string personalRemainStr = personalRemain > 0 ? UIHelper.AppendStringColor(TextColType.Green, personalRemain.ToString(),true) : UIHelper.AppendStringColor(TextColType.Red, personalRemain.ToString());
            fullServerRemainNum.text = fullSeverRemainStr;
            personalRemainNum.text = personalRemainStr;
            switch (sellState)