From 3bf552a9f0b39e5275039ccd73c65226dd051c81 Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期四, 06 九月 2018 11:31:28 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
---
System/MainInterfacePanel/HoistingWin.cs | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/System/MainInterfacePanel/HoistingWin.cs b/System/MainInterfacePanel/HoistingWin.cs
index c48f39e..6363a3d 100644
--- a/System/MainInterfacePanel/HoistingWin.cs
+++ b/System/MainInterfacePanel/HoistingWin.cs
@@ -32,6 +32,7 @@
PlayerTaskDatas taskmodel { get { return m_TaskModel ?? (m_TaskModel = ModelCenter.Instance.GetModel<PlayerTaskDatas>()); } }
WorldBossModel Worldmodel { get { return ModelCenter.Instance.GetModel<WorldBossModel>(); } }
+ DailyQuestModel dailyquestmodel { get { return ModelCenter.Instance.GetModel<DailyQuestModel>(); } }
#region Built-in
protected override void BindController()
{
@@ -43,6 +44,7 @@
FairyLandButton.AddListener(() =>
{
Close();
+ dailyquestmodel.currentDailyQuest = (int)DailyQuestType.FairyLand;
WindowJumpMgr.Instance.WindowJumpTo(JumpUIType.DailyQuestFunc1);
});
@@ -54,6 +56,7 @@
BountyTaskButton.AddListener(() =>
{
Close();
+ dailyquestmodel.currentDailyQuest = (int)DailyQuestType.BountyMission;
WindowJumpMgr.Instance.WindowJumpTo(JumpUIType.DailyQuestFunc1);
});
--
Gitblit v1.8.0