Module:GenerateTables: Difference between revisions

From Foundry Wiki
No edit summary
No edit summary
Line 2: Line 2:


funcs.recipeRates = function(frame)
funcs.recipeRates = function(frame)
local recipeName = frame.args[1]
local recipeName = frame.args[1] or ""
return recipeName
return recipeName
end
end

Revision as of 22:02, 10 May 2024

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

local funcs = {}

funcs.recipeRates = function(frame)
	local recipeName = frame.args[1] or ""
	return recipeName
end