diff options
-rw-r--r-- | extranodes/lox.lua | 2 | ||||
-rw-r--r-- | technic/machines/register/alloy_recipes.lua | 4 | ||||
-rw-r--r-- | technic/machines/register/extractor_recipes.lua | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/extranodes/lox.lua b/extranodes/lox.lua index 0d27a4d..08b2269 100644 --- a/extranodes/lox.lua +++ b/extranodes/lox.lua @@ -42,7 +42,7 @@ minetest.register_craftitem(":technic:lox", { local loc = {} local wrk = false - for y=0,2,1 do + for y=0,3,1 do for x=-2,2,1 do for z = -2,2,1 do loc = {x = pos.x - x, y = pos.y - y, z = pos.z - z} diff --git a/technic/machines/register/alloy_recipes.lua b/technic/machines/register/alloy_recipes.lua index e38c930..91e68f2 100644 --- a/technic/machines/register/alloy_recipes.lua +++ b/technic/machines/register/alloy_recipes.lua @@ -36,6 +36,10 @@ if minetest.get_modpath("ethereal") then table.insert(recipes, {"default:clay", "dye:orange", "bakedclay:orange"}) table.insert(recipes, {"default:clay", "dye:grey", "bakedclay:grey"}) table.insert(recipes, {"ethereal:crystal_spike", "ethereal:fire_dust 2", "default:mese_crystal 2"}) + if minetest.get_modpath("bonemeal") then + table.insert(recipes, {"default:sand", "bonemeal:mulch", "ethereal:sandy 2"}) + table.insert(recipes, {"default:sand", "bonemeal:bonemeal", "ethereal:sandy"}) + end end for _, data in pairs(recipes) do diff --git a/technic/machines/register/extractor_recipes.lua b/technic/machines/register/extractor_recipes.lua index d178d04..2e3cc14 100644 --- a/technic/machines/register/extractor_recipes.lua +++ b/technic/machines/register/extractor_recipes.lua @@ -43,6 +43,7 @@ if minetest.get_modpath("dye") then table.insert(dye_recipes, {"farming:chili_pepper", "dye:red 4"}) table.insert(dye_recipes, {"farming:beans", "dye:green 4"}) table.insert(dye_recipes, {"farming:grapes", "dye:violet 4"}) + table.insert(dye_recipes, {"farming:cocoa_beans", "dye:brown 4"}) -- Some extra recipes: -- Himalayan rhubarb root can give yellow dye IRL table.insert(dye_recipes, {"farming:rhubarb", "dye:yellow 4"}) |