Skip to content
Snippets Groups Projects
Commit 315ac8b6 authored by dg's avatar dg
Browse files

The automatic zone/level save on zone/level change will also trigger a main...

The automatic zone/level save on zone/level change will also trigger a main game save, so crashes can not "destroy" zones


git-svn-id: http://svn.net-core.org/repos/t-engine4@5204 51575b47-30f0-44d4-a5cc-537603b46e54
parent da2e74e3
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,8 @@ function _M:push(savename, type, object, class, on_end)
game:registerCoroutine("savefilepipe", self.co)
end
if game.onSavefilePushed then game:onSavefilePushed(savename, type, object, class) end
-- Refuse to continue, make the user wait
if #self.pipe >= self.max_before_wait or not config.settings.background_saves then
self:forceWait()
......
......@@ -1616,6 +1616,11 @@ function _M:onSavefilePush()
self.player:restStop("saving")
end
--- When a save has been done, if it's a zone or level, also save the main game
function _M:onSavefilePushed(savename, type, object, class)
if type == "zone" or type == "level" then self:saveGame() end
end
--- Saves the highscore of the current char
function _M:registerHighscore()
local player = self:getPlayer(true)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment