VERY quick fix: randomize seed when making admin account

This commit is contained in:
Lera Elvoé 2025-05-23 05:41:38 +03:00
parent 2ccacf12a3
commit 4fa80aa8c7
Signed by: yagich
SSH Key Fingerprint: SHA256:6xjGb6uA7lAVcULa7byPEN//rQ0wPoG+UzYVMfZnbvc

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)