Menú artístico: mejorar entropía
continuous-integration/woodpecker the build was successful Details

This commit is contained in:
Cat /dev/Nulo 2021-12-10 18:26:44 -03:00
parent 1ceaa80ba5
commit 767de5e58c
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ local adjetivos = {
local random_i = 1
local function random(list)
math.randomseed(os.time() + random_i)
math.randomseed((''..os.time()):reverse() + random_i)
random_i = random_i + 5
return list[math.random(#list)]
end