diff options
author | sapier <Sapier at GMX dot net> | 2013-07-12 23:25:58 +0200 |
---|---|---|
committer | PilzAdam <pilzadam@minetest.net> | 2013-07-22 18:09:59 +0200 |
commit | 7a9f365ba4976ac18c03290bd6f16b7b05126116 (patch) | |
tree | ec711d9dadc3600a32f6b124fd8cccec486d5fe6 /builtin | |
parent | 0850d3fcf8be1a2644af57a8218c749f6d17d5ed (diff) | |
download | minetest-7a9f365ba4976ac18c03290bd6f16b7b05126116.tar.gz minetest-7a9f365ba4976ac18c03290bd6f16b7b05126116.tar.bz2 minetest-7a9f365ba4976ac18c03290bd6f16b7b05126116.zip |
Remove unused required by list in worldconfig
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/modmgr.lua | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/builtin/modmgr.lua b/builtin/modmgr.lua index b42492882..b26440a54 100644 --- a/builtin/modmgr.lua +++ b/builtin/modmgr.lua @@ -444,11 +444,9 @@ function modmgr.dialog_configure_world() retval = retval .. "label[0,0.45;Mod:]" .. "label[0.75,0.45;" .. modname .. "]" .. - "label[0,1.5;depends on:]" .. - "textlist[0,2;5,2;world_config_depends;" .. - modmgr.get_dependencys(modfolder) .. ";0]" .. - "label[0,4;depends on:]" .. - "textlist[0,4.5;5,2;world_config_is_required;;0]" + "label[0,1.5;Depends:]" .. + "textlist[0,2;5,4.25;world_config_depends;" .. + modmgr.get_dependencys(modfolder) .. ";0]" if modpack_selected then retval = retval .. |