少年修仙传客户端代码仓库
Client_PangDeRong
2018-10-08 ee2c8d6ef196289e5d6ee8ecb8ea95ed953336e3
3997  【前端】【1.2.0】仙界盛典开启和关闭时间修改为凌晨5点
4个文件已修改
60 ■■■■ 已修改文件
Core/NetworkPackage/DTCFile/ServerPack/HAC_Activity/DTCAC09_tagGCFairyCeremonyInfo.cs 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Core/NetworkPackage/ServerPack/HAC_Activity/HAC09_tagGCFairyCeremonyInfo.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/KnapSack/New/BatchUseModel.cs 54 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Welfare/OperationTimeHepler.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Core/NetworkPackage/DTCFile/ServerPack/HAC_Activity/DTCAC09_tagGCFairyCeremonyInfo.cs
@@ -6,7 +6,8 @@
public class DTCAC09_tagGCFairyCeremonyInfo : DtcBasic {
public class DTCAC09_tagGCFairyCeremonyInfo : DtcBasic
{
    FairylandCeremonyModel ceremonyModel { get { return ModelCenter.Instance.GetModel<FairylandCeremonyModel>(); } }
Core/NetworkPackage/ServerPack/HAC_Activity/HAC09_tagGCFairyCeremonyInfo.cs
@@ -8,6 +8,7 @@
    public string EndtDate;    // 结束日期 y-m-d
    public ushort WorldLV;    // 世界等级
    public ushort LimitLV;    // 限制等级
    public byte ResetType;    // 重置类型 0-0点重置 1-5点重置
    public HAC09_tagGCFairyCeremonyInfo () {
        _cmd = (ushort)0xAC09;
@@ -18,6 +19,7 @@
        TransBytes (out EndtDate, vBytes, NetDataType.Chars, 10);
        TransBytes (out WorldLV, vBytes, NetDataType.WORD);
        TransBytes (out LimitLV, vBytes, NetDataType.WORD);
        TransBytes (out ResetType, vBytes, NetDataType.BYTE);
    }
}
System/KnapSack/New/BatchUseModel.cs
@@ -1,30 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TableConfig;
namespace Snxxz.UI
{
    public class BatchUseModel : Singleton<BatchUseModel>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TableConfig;
namespace Snxxz.UI
{
    public class BatchUseModel : Singleton<BatchUseModel>
    {
        #region 批量使用数据
        public string guid { get; private set; }
        public void SetBatchModel(string guid)
        {
            extraPrams = 0;
            this.maxValue = 0;
            this.guid = guid;
        }
        public int extraPrams { get; private set; }
        public int maxValue { get; private set; }
        public void SetExtraInfo(int extraUseInfo, int maxValue)
        #region 批量使用数据
        public string guid { get; private set; }
        public void SetBatchModel(string guid)
        {
            this.extraPrams = extraUseInfo;
            this.maxValue = maxValue;
            extraPrams = 0;
            this.maxValue = 0;
            this.guid = guid;
        }
        #endregion
        public int extraPrams { get; private set; }
        public int maxValue { get; private set; }
        public void SetExtraInfo(int extraUseInfo, int maxValue)
        {
            this.extraPrams = extraUseInfo;
            this.maxValue = maxValue;
        }
        #endregion
        #region 批量购买数据
        public StoreConfig storeConfig { get; private set; }
@@ -50,6 +50,6 @@
        {
            storeConfig = null;
        }
        #endregion
    }
}
        #endregion
    }
}
System/Welfare/OperationTimeHepler.cs
@@ -310,6 +310,7 @@
                operation.startDate = ParseOperationDate(package.StartDate);
                operation.endDate = ParseOperationDate(package.EndtDate);
                operation.limitLv = package.LimitLV;
                operation.resetType = package.ResetType;
                if (operationTimeUpdateEvent != null)
                {
                    operationTimeUpdateEvent(Operation.FairyCeremony);