Ensure replays are only saved once per game
This commit is contained in:
@@ -179,6 +179,9 @@ function GameMode:update(inputs, ruleset)
|
|||||||
if self.game_over or self.completed then
|
if self.game_over or self.completed then
|
||||||
if self.save_replay and self.game_over_frames == 0 then
|
if self.save_replay and self.game_over_frames == 0 then
|
||||||
self:saveReplay()
|
self:saveReplay()
|
||||||
|
|
||||||
|
-- ensure replays are only saved once per game, incase self.game_over_frames == 0 for longer than one frame
|
||||||
|
self.save_replay = false
|
||||||
end
|
end
|
||||||
self.game_over_frames = self.game_over_frames + 1
|
self.game_over_frames = self.game_over_frames + 1
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user