|
@@ -109,11 +109,16 @@ namespace GFGGame
|
|
{
|
|
{
|
|
_onCompleteStoryDialogCallParam = datas[3];
|
|
_onCompleteStoryDialogCallParam = datas[3];
|
|
}
|
|
}
|
|
- // if (LauncherConfig.netType == LauncherConfig.EnumNetType.LOCAL)
|
|
|
|
- // {
|
|
|
|
- //临时设置都可以跳过对话
|
|
|
|
- skipable = true;
|
|
|
|
- // }
|
|
|
|
|
|
+ StoryChapterCfg chapterCfg = StoryChapterCfgArray.Instance.GetCfg(MainStoryDataManager.currentChapterCfgId);
|
|
|
|
+ if (LauncherConfig.netType == LauncherConfig.EnumNetType.TEMP && MainStoryDataManager.currentChapterCfgId == 10001 && !InstanceZonesDataManager.CheckChapterPass(chapterCfg.type, chapterCfg.subType, chapterCfg.id, chapterCfg.levelCount))
|
|
|
|
+ {
|
|
|
|
+ // 临时设置都可以跳过对话
|
|
|
|
+ skipable = false;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ skipable = true;
|
|
|
|
+ }
|
|
|
|
|
|
_ui.m_btnSkip.visible = skipable;
|
|
_ui.m_btnSkip.visible = skipable;
|
|
|
|
|