mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-18 10:45:27 +02:00
Fix Bug in modname guessing resulting in undefined modname
This commit is contained in:
@@ -151,7 +151,11 @@ function modmgr.parse_register_line(line)
|
|||||||
local pos3 = item:find(":")
|
local pos3 = item:find(":")
|
||||||
|
|
||||||
if pos3 ~= nil then
|
if pos3 ~= nil then
|
||||||
return item:sub(1,pos3-1)
|
local retval = item:sub(1,pos3-1)
|
||||||
|
if retval ~= nil and
|
||||||
|
retval ~= "" then
|
||||||
|
return retval
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user