少年修仙传客户端代码仓库
client_Wu Xijin
2018-08-31 b7ffa4a2a98b3706928a85cb656590abfa6d55f9
3149 【前端】日常界面骑宠争夺活动未开启时显示
1个文件已修改
23 ■■■■■ 已修改文件
System/DailyQuest/DailyQuestModel.cs 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/DailyQuest/DailyQuestModel.cs
@@ -30,26 +30,31 @@
        public Redpoint trialExchangeRedpoint = new Redpoint(EVERYDAY_REDPOINTID, TRIALEXCHANGE_REDPOINTID);
        int m_DailyQuestTotalActiveValue = 150;
        public int dailyQuestTotalActiveValue {
        public int dailyQuestTotalActiveValue
        {
            get { return m_DailyQuestTotalActiveValue; }
        }
        int m_CurrentDailyQuest = 0;
        public int currentDailyQuest {
        public int currentDailyQuest
        {
            get { return this.m_CurrentDailyQuest; }
            set { this.m_CurrentDailyQuest = value; }
        }
        int m_CurrentRewardStageIndex = 0;
        public int currentRewardStageIndex {
        public int currentRewardStageIndex
        {
            get { return m_CurrentRewardStageIndex; }
            private set { m_CurrentRewardStageIndex = value; }
        }
        int m_TotalActiveValue = 0;
        public int totalActiveValue {
        public int totalActiveValue
        {
            get { return m_TotalActiveValue; }
            private set {
            private set
            {
                if (m_TotalActiveValue != value)
                {
                    m_TotalActiveValue = value;
@@ -63,9 +68,11 @@
        }
        int m_GotableRealmPoint;
        public int gotableRealmPoint {
        public int gotableRealmPoint
        {
            get { return m_GotableRealmPoint; }
            private set {
            private set
            {
                if (m_GotableRealmPoint != value)
                {
                    m_GotableRealmPoint = value;
@@ -857,7 +864,7 @@
        {
            var type = (DailyQuestType)_dailyQuestId;
            var dailyConfig = Config.Instance.Get<DailyQuestConfig>(_dailyQuestId);
            if (type == DailyQuestType.FairyFeast || type == DailyQuestType.FairyLeague || type == DailyQuestType.FairyTask)
            if (type == DailyQuestType.FairyFeast || type == DailyQuestType.FairyLeague || type == DailyQuestType.FairyTask || type == DailyQuestType.FairyGrabBoss)
            {
                if (PlayerDatas.Instance.fairyData.HasFairy)
                {