Browse Source

田野调查解锁提示

zhaoyang 2 years ago
parent
commit
89d1329bcb
1 changed files with 2 additions and 1 deletions
  1. 2 1
      GameClient/Assets/Game/HotUpdate/Views/Field/FieldView.cs

+ 2 - 1
GameClient/Assets/Game/HotUpdate/Views/Field/FieldView.cs

@@ -111,7 +111,8 @@ namespace GFGGame
 
 
                 _ui.m_c1.selectedIndex = _selectedIndex;
                 _ui.m_c1.selectedIndex = _selectedIndex;
                 StoryLevelCfg storyLevelCfg = StoryLevelCfgArray.Instance.GetCfg(selectCfg.storyLvId);
                 StoryLevelCfg storyLevelCfg = StoryLevelCfgArray.Instance.GetCfg(selectCfg.storyLvId);
-                string str = string.Format("完成主线{0}-{1}解锁", storyLevelCfg.chapterId, storyLevelCfg.order);
+                StoryChapterCfg storyChapterCfg = StoryChapterCfgArray.Instance.GetCfg(storyLevelCfg.chapterId);
+                string str = string.Format("完成主线{0}-{1}解锁", storyChapterCfg.order, storyLevelCfg.order);
                 PromptController.Instance.ShowFloatTextPrompt(str);
                 PromptController.Instance.ShowFloatTextPrompt(str);
                 return;
                 return;
             }
             }