Ensure replays are only saved once per game

pull/79/head
aur9ra 2023-08-20 22:22:36 -07:00
parent 5f81c35677
commit 52ddbbc174
1 changed files with 3 additions and 0 deletions

View File

@ -179,6 +179,9 @@ function GameMode:update(inputs, ruleset)
if self.game_over or self.completed then
if self.save_replay and self.game_over_frames == 0 then
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
self.game_over_frames = self.game_over_frames + 1
return