woops typo

This commit is contained in:
rhy 2023-01-09 12:25:26 -03:00
parent 2642c304ad
commit 370b33b96f

View File

@ -9,7 +9,7 @@ local uuid = {}
--(internal; use a provided random generator object, or not)
local function _random(rng, ...)
if rng then return rng:random(...) end
if love then return nlove.math.random(...) end
if love then return love.math.random(...) end
return math.random(...)
end