From 17c684a98dd8811fd22ced8da1590e08d3bc4831 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期日, 28 四月 2019 10:32:26 +0800
Subject: [PATCH] Merge branch 'master' into ViewOtherPlayer
---
System/MainInterfacePanel/FunctionForecastTip.cs | 21 +--------------------
1 files changed, 1 insertions(+), 20 deletions(-)
diff --git a/System/MainInterfacePanel/FunctionForecastTip.cs b/System/MainInterfacePanel/FunctionForecastTip.cs
index 7eb649d..687aa5b 100644
--- a/System/MainInterfacePanel/FunctionForecastTip.cs
+++ b/System/MainInterfacePanel/FunctionForecastTip.cs
@@ -120,26 +120,7 @@
_Information.gameObject.SetActive(true);
_FunctionIcon.SetSprite(FunctionForecastConfig.Get(ID).FuncIconKey);
_NameText.text = FunctionForecastConfig.Get(ID).Describe;
- FuncOpenLVConfig funcoPenConfig = FuncOpenLVConfig.Get(ID);
- if (funcoPenConfig.LimitMagicWeapon != 0 || funcoPenConfig.LimitMissionID != 0)
- {
- if (funcoPenConfig.LimitMagicWeapon != 0)
- {
- int faBaoID = funcoPenConfig.LimitMagicWeapon / 100;
- TreasureConfig treasure = TreasureConfig.Get(faBaoID);
- _Information.text = string.Format(Language.Get("FuncFBOpen"), treasure.Name);
- return;
- }
- if (funcoPenConfig.LimitMissionID != 0)
- {
- _Information.text = string.Format(Language.Get("TaskFuncOpen"), funcoPenConfig.LimitLV);
- return;
- }
- }
- else
- {
- _Information.text = string.Format(Language.Get("FuncLevelOpen"), funcoPenConfig.LimitLV);
- }
+ _Information.text= FunctionForecastConfig.Get(ID).OpenDescribe;
}
--
Gitblit v1.8.0