From 2df58aeacbf1177ec01167bdeccfe89d6a8d5804 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期三, 13 二月 2019 14:20:28 +0800
Subject: [PATCH] 3335 配置表读取重构,修改配置表读取接口1
---
System/MainInterfacePanel/InGamePushContainer.cs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/System/MainInterfacePanel/InGamePushContainer.cs b/System/MainInterfacePanel/InGamePushContainer.cs
index 508f3d4..b7a82f4 100644
--- a/System/MainInterfacePanel/InGamePushContainer.cs
+++ b/System/MainInterfacePanel/InGamePushContainer.cs
@@ -107,7 +107,7 @@
private void CheckHelpPointExchange()
{
int pushId = exchageModel.currentShopId;
- StoreConfig storeConfig = Config.Instance.Get<StoreConfig>(pushId);
+ StoreConfig storeConfig = StoreConfig.Get(pushId);
if (pushId != 0 && storeConfig != null)
{
m_HelpPointExchangeNotify.gameObject.SetActive(true);
@@ -353,7 +353,7 @@
private void OnNewBieGuideBegin()
{
- var guideConfig = Config.Instance.Get<GuideConfig>(NewBieCenter.Instance.currentGuide);
+ var guideConfig = GuideConfig.Get(NewBieCenter.Instance.currentGuide);
switch ((GuideTriggerType)guideConfig.TriggerType)
{
case GuideTriggerType.EquipQuality:
--
Gitblit v1.8.0