intro场景NOGAME铁门改为启动时弹窗提示重启;不再接受v0.13.2前的设置(自动删除重置)

This commit is contained in:
MrZ626
2021-03-19 17:33:20 +08:00
parent edd903c0df
commit 5000be3263
2 changed files with 15 additions and 38 deletions

View File

@@ -15,17 +15,12 @@ end
function scene.mouseDown(_,_,k)
if k~=2 then
if NOGAME then
LOG.print("检测到大版本更新,请重启游戏完成",600,COLOR.yellow)
LOG.print("Old version detected & saving file changed, please restart the game",600,COLOR.yellow)
if newVersionLaunch then
SCN.push(SETTING.simpMode and"main_simple"or"main")
SCN.swapTo("history","fade")
LOG.print(text.newVersion,"warn",COLOR.lBlue)
else
if newVersionLaunch then
SCN.push(SETTING.simpMode and"main_simple"or"main")
SCN.swapTo("history","fade")
LOG.print(text.newVersion,"warn",COLOR.lBlue)
else
SCN.go(SETTING.simpMode and"main_simple"or"main")
end
SCN.go(SETTING.simpMode and"main_simple"or"main")
end
end
end