Fix wrong filename in random.lua

This commit is contained in:
Miguel Oliveira 2022-03-04 12:47:35 -03:00
parent 4c52aa8774
commit 1019623aec
No known key found for this signature in database
GPG key ID: 2C2BE789E1377025

View file

@ -46,8 +46,8 @@ local function save()
end end
-- Load. -- Load.
if fs.exists("./random") then if fs.exists("/.random") then
local file = fs.open("./random", "rb") local file = fs.open("/.random", "rb")
seed(file.read(32) or "") seed(file.read(32) or "")
end end