mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
fix json reading error.
This commit is contained in:
parent
09ef5fd96b
commit
b66e2a117f
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ minetest.mkdir(map_textures_path)
|
|||
|
||||
local function load_json_file(name)
|
||||
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()
|
||||
return data
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue