Fixed strings

This commit is contained in:
Trashbox Bobylev 2019-03-25 16:29:33 +07:00
parent 2687db83ab
commit 35da7227bc

View file

@ -72,7 +72,7 @@ function C:_mountDirectory(path)
end end
function C:_seedRngesus() function C:_seedRngesus()
local seed_from_file = io.open(lf.getSourceBaseDirectory() + "seed.txt"):read('*10') local seed_from_file = io.open(lf.getSourceBaseDirectory() .. "seed.txt"):read('*10')
local seed = "" local seed = ""
if seed_from_file == nil or string.len(seed_from_file) < 10 then if seed_from_file == nil or string.len(seed_from_file) < 10 then
logWarning('Seed from file doesnt exists or seems to be invalid, generate a new') logWarning('Seed from file doesnt exists or seems to be invalid, generate a new')