From 08b660ba990d4cfd5be6030454b9fcda94c61d19 Mon Sep 17 00:00:00 2001 From: coil <51716565+coil0@users.noreply.github.com> Date: Sat, 14 Dec 2019 04:20:32 -0500 Subject: [PATCH] Add recipe to extract violet dye from blueberries (#518) --- technic/machines/register/extractor_recipes.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/technic/machines/register/extractor_recipes.lua b/technic/machines/register/extractor_recipes.lua index 54baa61..ba43df5 100644 --- a/technic/machines/register/extractor_recipes.lua +++ b/technic/machines/register/extractor_recipes.lua @@ -15,6 +15,7 @@ if minetest.get_modpath("dye") then -- register recipes with the same crafting ratios as `dye` provides local dye_recipes = { {"technic:coal_dust", "dye:black 2"}, + {"default:blueberries", "dye:violet 2"}, {"default:grass_1", "dye:green 1"}, {"default:dry_shrub", "dye:brown 1"}, {"default:junglegrass", "dye:green 2"},