少年修仙传客户端代码仓库
hxp
2019-09-12 3790d5aabc44811e15edec71ce4e862179979371
8261 【主干】仙盟宴会及传功优化
4个文件已修改
26 ■■■■■ 已修改文件
System/Activity/ActivityNotifyBehaviour.cs 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/DailyQuest/DailyQuestModel.cs 11 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/FairyAu/FairyFeastModel.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Utility/EnumHelper.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Activity/ActivityNotifyBehaviour.cs
@@ -112,12 +112,10 @@
                        }
                        break;
                    case DailyQuestType.FairyFeast:
                        if (CrossServerUtility.IsCrossServer())
                        {
                            SysNotifyMgr.Instance.ShowTip("CrossMap10");
                            break;
                        }
                        dungeonModel.SingleChallenge(config.RelatedID);
                        dungeonModel.SingleChallenge(31230);
                        break;
                    case DailyQuestType.FairyChuanGong:
                        dungeonModel.SingleChallenge(31230);
                        break;
                    case DailyQuestType.Trial:
                        {
System/DailyQuest/DailyQuestModel.cs
@@ -1339,13 +1339,10 @@
                    WindowCenter.Instance.Open<UnionPanel>(false, 4);
                    break;
                case DailyQuestType.FairyFeast:
                    if (CrossServerUtility.IsCrossServer())
                    {
                        SysNotifyMgr.Instance.ShowTip("CrossMap10");
                        break;
                    }
                    var config = DailyQuestConfig.Get(_id);
                    dungeonModel.SingleChallenge(config.RelatedID);
                    dungeonModel.SingleChallenge(31230);
                    break;
                case DailyQuestType.FairyChuanGong:
                    dungeonModel.SingleChallenge(31230);
                    break;
                case DailyQuestType.RuneTowerSweep:
                    RuneTowerWin.guideSweep = true;
System/FairyAu/FairyFeastModel.cs
@@ -61,7 +61,7 @@
            expFormula = config.Numerical1;
            riseLevel = int.Parse(config.Numerical2);
            var list = DungeonStateTimeConfig.DungeonStateTimes(31230);
            /* var list = DungeonStateTimeConfig.DungeonStateTimes(31230);
            for (int i = 0; i < list.Count; i++)
            {
                if (list[i].StateValue == 2)
@@ -78,7 +78,7 @@
                        });
                    }
                }
            }
            } */
        }
        public bool TryGetQuestionTime(out HourMinute time)
Utility/EnumHelper.cs
@@ -343,6 +343,7 @@
    Auction = 37,
    JadeDynastyBoss = 38,
    CrossServerBoss = 39,
    FairyChuanGong = 40, //仙盟传功
}
[XLua.LuaCallCSharp]