소스 검색

副本配置错误提示

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();