Module:RecipeDetails/Pull

From IdleOn MMO Wiki

Documentation for this module may be created at Module:RecipeDetails/Pull/doc

local metat = mw.loadData("Module:RecipeDetails/data").allRecipes 
local t = {}
function recFormat(metat)
	for k, v in pairs(tab) do
		local inner = {}
		for a, b in pairs(v) do
			inner[a] = b
		end
		t[k] = inner
	end
end
recFormat(metat)
return t