do not randomseed twice

This commit is contained in:
cora 2022-02-17 11:36:58 +01:00 committed by Gitea
parent 378b5b30c9
commit 86ca401e4e
1 changed files with 0 additions and 1 deletions

View File

@ -33,7 +33,6 @@ local adjacents = {
{ x = 0, y = 0, z = 1 },
}
math.randomseed(os.time())
local function shuffle_table(t)
for i = #t, 1, -1 do
local r = math.random(i)