Module:CreateModuleGridData: Difference between revisions

From The First Descendant Wiki
mNo edit summary
mNo edit summary
Line 3: Line 3:
function p.getModuleData(frame)
function p.getModuleData(frame)
     local data = mw.loadData("Module:Modules/data")
     local data = mw.loadData("Module:Modules/data")
     local module_name = frame:getTitle()
     local module_name = frame:getParent().getTitle()
     return module_name
     return module_name
end
end


return p
return p

Revision as of 11:43, 3 June 2024

currently does not work correctly


local p = {}

function p.getModuleData(frame)
    local data = mw.loadData("Module:Modules/data")
    local module_name = frame:getParent().getTitle()
    return module_name
end

return p