From a8f0eb9f1a09b01106775c09f2b7dde98d8773dd Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期四, 22 十一月 2018 16:43:09 +0800
Subject: [PATCH] 4747 【前端】【1.3】封魔坛新增自动进入功能(VIP特权),双倍挑战修改
---
System/MainInterfacePanel/InGamePushContainer.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/System/MainInterfacePanel/InGamePushContainer.cs b/System/MainInterfacePanel/InGamePushContainer.cs
index 3ac0ca0..6d46af1 100644
--- a/System/MainInterfacePanel/InGamePushContainer.cs
+++ b/System/MainInterfacePanel/InGamePushContainer.cs
@@ -231,15 +231,15 @@
private void CheckBossReborn()
{
- if (findPreciousModel.currentBossNotify == 0)
+ if (findPreciousModel.currentBossNotify == default(FindPreciousModel.BossNotify))
{
m_BossRebornPusher.gameObject.SetActive(false);
}
else
{
- if (!BossFakeLineUtility.Instance.IsBossVisible(findPreciousModel.currentBossNotify))
+ if (!BossFakeLineUtility.Instance.IsBossVisible(findPreciousModel.currentBossNotify.bossId))
{
- var findPreciousType = findPreciousModel.GetBossFindPreciousType(findPreciousModel.currentBossNotify);
+ var findPreciousType = findPreciousModel.GetBossFindPreciousType(findPreciousModel.currentBossNotify.bossId);
var killable = false;
var show = true;
--
Gitblit v1.8.0