forked from VoxeLibre/VoxeLibre
fix json reading error.
This commit is contained in:
parent
09ef5fd96b
commit
b66e2a117f
|
@ -24,7 +24,7 @@ minetest.mkdir(map_textures_path)
|
||||||
|
|
||||||
local function load_json_file(name)
|
local function load_json_file(name)
|
||||||
local file = assert(io.open(modpath .. "/" .. name .. ".json", "r"))
|
local file = assert(io.open(modpath .. "/" .. name .. ".json", "r"))
|
||||||
local data = minetest.parse_json(file:read())
|
local data = minetest.parse_json(file:read("*all"))
|
||||||
file:close()
|
file:close()
|
||||||
return data
|
return data
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue