Small fix
This commit is contained in:
parent
f2643547bc
commit
a2a98074c2
@ -37,6 +37,7 @@ LUI.addmenubutton("main_campaign", {
|
|||||||
|
|
||||||
function getmodname(path)
|
function getmodname(path)
|
||||||
local name = path
|
local name = path
|
||||||
|
local desc = "Load " .. name
|
||||||
local infofile = path .. "/info.json"
|
local infofile = path .. "/info.json"
|
||||||
|
|
||||||
if (io.fileexists(infofile)) then
|
if (io.fileexists(infofile)) then
|
||||||
@ -48,7 +49,7 @@ function getmodname(path)
|
|||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
return name
|
return name, desc
|
||||||
end
|
end
|
||||||
|
|
||||||
LUI.MenuBuilder.m_types_build["mods_menu"] = function(a1)
|
LUI.MenuBuilder.m_types_build["mods_menu"] = function(a1)
|
||||||
@ -84,8 +85,7 @@ LUI.MenuBuilder.m_types_build["mods_menu"] = function(a1)
|
|||||||
if (io.directoryexists("mods")) then
|
if (io.directoryexists("mods")) then
|
||||||
local mods = io.listfiles("mods/")
|
local mods = io.listfiles("mods/")
|
||||||
for i = 1, #mods do
|
for i = 1, #mods do
|
||||||
local desc = "Load " .. mods[i]
|
local name, desc = getmodname(mods[i])
|
||||||
local name = getmodname(mods[i])
|
|
||||||
|
|
||||||
if (mods[i] ~= modfolder) then
|
if (mods[i] ~= modfolder) then
|
||||||
menu:AddButton("$_" .. name, function()
|
menu:AddButton("$_" .. name, function()
|
||||||
|
Loading…
Reference in New Issue
Block a user