Browse Source

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

Patch supplied by @pgimeno. Thank you.
SmallJoker 5 years ago
parent
commit
7efb407872
1 changed files with 1 additions and 1 deletions
  1. 1 1
      builtin/mainmenu/pkgmgr.lua

+ 1 - 1
builtin/mainmenu/pkgmgr.lua

@@ -25,7 +25,7 @@ function get_mods(path,retval,modpack)
 			local 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
 				name = mod_conf.name
 			end