mirror of
https://github.com/SashLilac/cambridge-modpack.git
synced 2025-05-13 20:21:24 -05:00
Fixed RNG in replays being different each time
This commit is contained in:
@@ -561,7 +561,7 @@ function LifeGrid:advanceLife()
|
||||
if (count == 3) and (newgrid[y][x] == empty) then
|
||||
newgrid[y][x] = {
|
||||
skin = "2tie",
|
||||
colour = ({"R", "O", "Y", "G", "B", "C", "M"})[math.random(7)]
|
||||
colour = ({"R", "O", "Y", "G", "B", "C", "M"})[love.math.random(7)]
|
||||
}
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user