diff --git a/parts/gametoolfunc.lua b/parts/gametoolfunc.lua index 5e7350a5..e204985b 100644 --- a/parts/gametoolfunc.lua +++ b/parts/gametoolfunc.lua @@ -526,7 +526,7 @@ local function tick_showMods() end end function resetGameData(replaying) - if PLAYERS[1]and not GAME.replaying then + if PLAYERS[1]and not GAME.replaying and(GAME.frame>400 or GAME.result)then mergeStat(STAT,PLAYERS[1].stat) STAT.todayTime=STAT.todayTime+PLAYERS[1].stat.time end diff --git a/parts/scenes/pause.lua b/parts/scenes/pause.lua index b965d459..f9c03270 100644 --- a/parts/scenes/pause.lua +++ b/parts/scenes/pause.lua @@ -122,7 +122,7 @@ function scene.sceneInit(org) end function scene.sceneBack() love.keyboard.setKeyRepeat(true) - if not GAME.replaying then + if not GAME.replaying and(GAME.frame>400 or GAME.result)then mergeStat(STAT,PLAYERS[1].stat) STAT.todayTime=STAT.todayTime+PLAYERS[1].stat.time end