redfine latex->rubber path via alloy furnace

latex is being refined to rubber by drying and adding carbon pigments to strengthen the material
(which also turns it black)
it should not yield more rubber than its latex input, but it may be processed faster than ores
This commit is contained in:
Tim 2015-01-30 05:03:06 +01:00
parent 56e96b2593
commit f330d58354
2 changed files with 3 additions and 9 deletions

View File

@ -24,6 +24,9 @@ local recipes = {
{"default:copper_ingot 2", "technic:zinc_ingot", "technic:brass_ingot 3"},
{"default:sand 2", "technic:coal_dust 2", "technic:silicon_wafer"},
{"technic:silicon_wafer", "technic:gold_dust", "technic:doped_silicon_wafer"},
-- latex is being refined to rubber by drying and adding carbon pigments to strengthen the material (which also turns it black)
-- it should not yield more rubber than its latex input, but it may be processed faster than ores
{"technic:raw_latex 3", "technic:coal_dust 3", "technic:rubber 3", 2},
}
for _, data in pairs(recipes) do

View File

@ -8,15 +8,6 @@ function technic.register_extractor_recipe(data)
technic.register_recipe("extracting", data)
end
local recipes = {
-- Rubber
{"technic:raw_latex", "technic:rubber 3"},
}
for _, data in pairs(recipes) do
technic.register_extractor_recipe({input = {data[1]}, output = data[2]})
end
if minetest.get_modpath("dye") then
-- check if we are using dye or unifieddyes
local unifieddyes = minetest.get_modpath("unifieddyes")