[antum_overrides] crafting/dye.lua: No longer need to clear craft

recipes.
This commit is contained in:
AntumDeluge 2016-09-06 05:00:24 -07:00
parent b5ddf33617
commit f100ef5d13

View File

@ -25,20 +25,6 @@
--]]
-- Remove dye recipes that do not have a matching flower color
local rcolors = {
'black', 'brown', 'cyan', 'dark_green', 'dark_grey', 'green', 'grey',
'magenta', 'pink',
}
for I in pairs(rcolors) do
antum.clearCraftRecipe(
{'group:flower,color_' .. rcolors[I]}
)
end
local function registerDyeRecipes(def)
for I, T in pairs(def) do
local dye = 'dye:' .. T[1]