mirror of
https://github.com/cave-story-randomizer/cave-story-randomizer
synced 2024-11-10 00:45:15 +00:00
Merge branch 'randomlib' into 'master'
Moves from lua random library to love2d random library See merge request duncathan/cave-story-randomizer!11
This commit is contained in:
commit
57871e0ef1
|
@ -12,7 +12,7 @@ local next, type, select, pcall = next, type, select, pcall
|
|||
local setmetatable, getmetatable = setmetatable, getmetatable
|
||||
local t_insert, t_sort = table.insert, table.sort
|
||||
local t_remove,t_concat = table.remove, table.concat
|
||||
local randomseed, random, huge = math.randomseed, math.random, math.huge
|
||||
local randomseed, random, huge = love.math.setRandomSeed, love.math.random, math.huge
|
||||
local floor, max, min = math.floor, math.max, math.min
|
||||
local rawget = rawget
|
||||
local unpack = table.unpack or unpack
|
||||
|
|
|
@ -72,7 +72,7 @@ end
|
|||
|
||||
function C:_seedRngesus()
|
||||
local seed = tostring(os.time())
|
||||
math.randomseed(seed)
|
||||
love.math.setRandomSeed(seed)
|
||||
logNotice(('Offering seed "%s" to RNGesus'):format(seed))
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue