mirror of
https://github.com/minetest/minetest.git
synced 2024-11-30 11:33:44 +01:00
parent
225e69063f
commit
b390bd2ea5
@ -90,7 +90,7 @@ local function load_texture_packs(txtpath, retval)
|
|||||||
retval[#retval + 1] = {
|
retval[#retval + 1] = {
|
||||||
name = item,
|
name = item,
|
||||||
author = conf:get("author"),
|
author = conf:get("author"),
|
||||||
release = tonumber(conf:get("release") or "0"),
|
release = tonumber(conf:get("release")) or 0,
|
||||||
list_name = name,
|
list_name = name,
|
||||||
type = "txp",
|
type = "txp",
|
||||||
path = path,
|
path = path,
|
||||||
@ -135,7 +135,7 @@ function get_mods(path,retval,modpack)
|
|||||||
-- Read from config
|
-- Read from config
|
||||||
toadd.name = name
|
toadd.name = name
|
||||||
toadd.author = mod_conf.author
|
toadd.author = mod_conf.author
|
||||||
toadd.release = tonumber(mod_conf.release or "0")
|
toadd.release = tonumber(mod_conf.release) or 0
|
||||||
toadd.path = prefix
|
toadd.path = prefix
|
||||||
toadd.type = "mod"
|
toadd.type = "mod"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user