Module:CreateModuleGridData: Difference between revisions

From The First Descendant Wiki
No edit summary
mNo edit summary
Line 4: Line 4:
     local data = mw.loadData("Module:Modules/data")
     local data = mw.loadData("Module:Modules/data")
     local module_name = frame:getParent():getTitle()
     local module_name = frame:getParent():getTitle()
     return module_name
     return data
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 data
end

return p