From 7e9ae336dce92f0ed2abcf2d6eea2f205598407d Mon Sep 17 00:00:00 2001
From: QD_LCJ <461730578@qq.com>
Date: 星期四, 09 八月 2018 15:43:13 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.87:10010/r/snxxz_scripts
---
System/WindowJump/WindowJumpMgr.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/System/WindowJump/WindowJumpMgr.cs b/System/WindowJump/WindowJumpMgr.cs
index 836aa2b..e10eded 100644
--- a/System/WindowJump/WindowJumpMgr.cs
+++ b/System/WindowJump/WindowJumpMgr.cs
@@ -728,13 +728,13 @@
{
var config = ConfigManager.Instance.GetTemplate<DailyQuestConfig>(_dailyQuestId);
dungeonModel.currentDungeon = new Dungeon(config.RelatedID, _lineId);
- WindowCenter.Instance.Open<HeavenBattleWin>();
+ SetJumpLogic<HeavenBattleWin>();
}
private void GotoTrialDungeon(int _dailyQuestId, int _lineId = 0)
{
var config = ConfigManager.Instance.GetTemplate<DailyQuestConfig>(_dailyQuestId);
dungeonModel.currentDungeon = new Dungeon(config.RelatedID, _lineId);
- WindowCenter.Instance.Open<TrialDungeonSelectWin>();
+ SetJumpLogic<TrialDungeonSelectWin>();
}
private void GotoMultipleDifficultyDungeon(int _dailyQuestId)
@@ -742,7 +742,7 @@
var config = ConfigManager.Instance.GetTemplate<DailyQuestConfig>(_dailyQuestId);
dungeonModel.currentDungeon = new Dungeon(config.RelatedID, 0);
dungeonModel.selectedKylinDungeon = default(Dungeon);
- WindowCenter.Instance.Open<MultipleDifficultyDungeonWin>();
+ SetJumpLogic<MultipleDifficultyDungeonWin>();
}
private void SetJumpLogic<T>(int _functionalOrder = 0, bool _forceSync = true) where T : Window
--
Gitblit v1.8.0