parent
94b8d680bd
commit
f7301a2d25
|
@ -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