From ef6f6484b05d5b7650bff9a3ecbc7d2d6e6a8d35 Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Fri, 12 Oct 2018 07:57:26 -0400 Subject: update bees, coloredwood, digidisplay, farming redo, moreblocks, technic, travelnet, and unified dyes --- technic/machines/register/extractor_recipes.lua | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'technic/machines/register/extractor_recipes.lua') diff --git a/technic/machines/register/extractor_recipes.lua b/technic/machines/register/extractor_recipes.lua index 1de0ba0..54baa61 100644 --- a/technic/machines/register/extractor_recipes.lua +++ b/technic/machines/register/extractor_recipes.lua @@ -36,13 +36,21 @@ if minetest.get_modpath("dye") then -- overwrite the existing crafting recipes local dyes = {"white", "red", "yellow", "blue", "violet", "orange"} for _, color in ipairs(dyes) do + minetest.clear_craft({ + type = "shapeless", + recipe = {"group:flower,color_"..color}, + }) minetest.register_craft({ - type = "shapeless", - output = "dye:"..color.." 1", - recipe = {"group:flower,color_"..color}, + type = "shapeless", + output = "dye:"..color.." 1", + recipe = {"group:flower,color_"..color}, }) - end + + minetest.clear_craft({ + type = "shapeless", + recipe = {"group:coal"}, + }) minetest.register_craft({ type = "shapeless", output = "dye:black 1", @@ -50,6 +58,10 @@ if minetest.get_modpath("dye") then }) if unifieddyes then + minetest.clear_craft({ + type = "shapeless", + recipe = {"default:cactus"}, + }) minetest.register_craft({ type = "shapeless", output = "dye:green 1", -- cgit v1.2.3