VERY quick fix: randomize seed when making admin account

This commit is contained in:
2025-05-23 05:41:38 +03:00
parent 2ccacf12a3
commit 4fa80aa8c7

View File

@ -23,6 +23,7 @@ local function create_admin()
return
end
math.randomseed(os.time())
local password = ""
for _ = 1, 16 do
local randi = math.random(#alphabet)