Add recipe for extracting black dye from charcoal

This commit is contained in:
OgelGames 2019-08-23 19:45:15 +10:00
parent 29c3c7ea6f
commit b4f459fa72
2 changed files with 12 additions and 0 deletions

8
extractor.lua Normal file
View File

@ -0,0 +1,8 @@
-- extract black dye from charcoal
if minetest.get_modpath("charcoal") then
technic.register_extractor_recipe({
input = {"charcoal:charcoal_lump"},
output = "dye:black"
})
end

View File

@ -76,7 +76,11 @@ dofile(MP.."/join_announce.lua")
dofile(MP.."/crafts.lua")
if minetest.get_modpath("technic") then
-- grinder recipes
dofile(MP.."/grinder.lua")
-- extractor recipes
dofile(MP.."/extractor.lua")
end
if minetest.get_modpath("technic_cnc") then