فهرست منبع

副本配置错误提示

zhaoyang 3 سال پیش
والد
کامیت
66b8f4b052
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      GameClient/Assets/Game/HotUpdate/Views/MainStory/InstanceZonesController.cs

+ 2 - 2
GameClient/Assets/Game/HotUpdate/Views/MainStory/InstanceZonesController.cs

@@ -25,7 +25,7 @@ namespace GFGGame
                 StoryFightCfg storyFightCfg = StoryFightCfgArray.Instance.GetCfg(levelCfg.fightID);
                 if (storyFightCfg == null)
                 {
-                    Debug.LogError(string.Format("战斗id:{0}无配置", levelCfg.fightID));
+                    Debug.LogError(string.Format("战斗id:{0}  无配置", levelCfg.fightID));
                     return;
                 }
                 ViewManager.Show(ViewName.STORY_LEVEL_INFO_VIEW, levelCfgId);
@@ -35,7 +35,7 @@ namespace GFGGame
                 List<StoryDialogCfg> storyDialogCfg = StoryDialogCfgArray.Instance.GetCfgs(levelCfg.storyStartID);
                 if (storyDialogCfg.Count <= 0)
                 {
-                    Debug.LogError(string.Format("剧情id:{0}无配置", levelCfg.storyStartID));
+                    Debug.LogError(string.Format("剧情id:{0}  无配置", levelCfg.storyStartID));
                     return;
                 }
                 bool skipable = MainStoryDataManager.CheckCurrentLevelPass();