Fixed the replay system's interaction with secret inputs

This commit is contained in:
Ishaan Bhardwaj
2021-12-09 23:00:20 -05:00
parent 06225bd35a
commit d4360b3662
4 changed files with 5 additions and 6 deletions

View File

@@ -16,11 +16,10 @@ GameMode.hash = ""
GameMode.tagline = ""
GameMode.rollOpacityFunction = function(age) return 0 end
function GameMode:new(secret_inputs)
function GameMode:new()
self.replay_inputs = {}
self.random_low, self.random_high = love.math.getRandomSeed()
self.random_state = love.math.getRandomState()
self.secret_inputs = secret_inputs
self.save_replay = config.gamesettings.save_replay == 1
self.grid = Grid(10, 24)