1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-27 15:00:30 +02:00

Fix ignored mod.conf mod name for world.mt (broken by e8eaab6)

Patch supplied by @pgimeno. Thank you.
This commit is contained in:
SmallJoker 2018-12-15 09:01:00 +01:00
parent 05f3dbfa68
commit 7efb407872

View File

@ -25,7 +25,7 @@ function get_mods(path,retval,modpack)
local toadd = {} local toadd = {}
retval[#retval + 1] = toadd retval[#retval + 1] = toadd
local mod_conf = Settings(prefix .. "mod.conf"):to_table() local mod_conf = Settings(prefix .. DIR_DELIM .. "mod.conf"):to_table()
if mod_conf.name then if mod_conf.name then
name = mod_conf.name name = mod_conf.name
end end