Module:GenerateTables: Difference between revisions

From Foundry Wiki
(Created page with "local funcs = {} funcs.tableRecipeRates = function(recipeName) return recipeName end")
 
No edit summary
Line 1: Line 1:
local funcs = {}
local funcs = {}


funcs.tableRecipeRates = function(recipeName)
funcs.recipeRates = function(recipeName)
return recipeName
return recipeName
end
end

Revision as of 22:00, 10 May 2024

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

local funcs = {}

funcs.recipeRates = function(recipeName)
	return recipeName
end