From ef436a75a7a0e293bd71f7305b7e7aba8edcad6c Mon Sep 17 00:00:00 2001 From: h-v-smacker Date: Sun, 4 Mar 2018 01:07:19 +0300 Subject: sorting grass --- technic/machines/register/centrifuge_recipes.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/technic/machines/register/centrifuge_recipes.lua b/technic/machines/register/centrifuge_recipes.lua index 6b887fa..fb16d0c 100644 --- a/technic/machines/register/centrifuge_recipes.lua +++ b/technic/machines/register/centrifuge_recipes.lua @@ -43,6 +43,14 @@ if minetest.get_modpath("farming") then end end +-- using centfuge as a sorting machine for grass seeds +table.insert(recipes, { "default:grass_1 99", "default:dry_grass_1 80", "default:dry_shrub 7", "default:junglegrass 12" }) +if minetest.get_modpath("ethereal") then + table.insert(recipes, { "default:junglegrass 99", "ethereal:dry_shrub 10", "ethereal:crystalgrass 5", "ethereal:snowygrass 5" }) + table.insert(recipes, { "default:dry_grass_1 99", "ethereal:fern 5" }) +end + + for _, data in pairs(recipes) do technic.register_separating_recipe({ input = { data[1] }, output = { data[2], data[3], data[4] } }) end -- cgit v1.2.3 From da75654eae85cbf03791df73d27eb36486771e3f Mon Sep 17 00:00:00 2001 From: h-v-smacker Date: Sun, 4 Mar 2018 06:17:40 +0300 Subject: recycling glass panes --- technic/machines/MV/centrifuge.lua | 2 +- technic/machines/register/grinder_recipes.lua | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/technic/machines/MV/centrifuge.lua b/technic/machines/MV/centrifuge.lua index a0aad64..d386265 100644 --- a/technic/machines/MV/centrifuge.lua +++ b/technic/machines/MV/centrifuge.lua @@ -9,7 +9,7 @@ minetest.register_craft({ technic.register_centrifuge({ tier = "MV", - demand = { 8000, 7000, 6000 }, + demand = { 8000, 6500, 5000 }, speed = 2, upgrade = 1, tube = 1, diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua index 496e132..db5449a 100644 --- a/technic/machines/register/grinder_recipes.lua +++ b/technic/machines/register/grinder_recipes.lua @@ -22,6 +22,8 @@ local recipes = { {"technic:sulfur_lump", "technic:sulfur_dust 2"}, {"default:stone", "technic:stone_dust"}, {"default:sand", "technic:stone_dust"}, + -- recycle glass panels + {"xpanes:pane_flat 8", "vessels:glass_fragments 3"}, -- Other {"default:cobble", "default:gravel"}, -- cgit v1.2.3 From 5fce723f2a469de7fafa3be31f9ca00f9d3c3e5c Mon Sep 17 00:00:00 2001 From: h-v-smacker Date: Sun, 4 Mar 2018 06:51:15 +0300 Subject: rotatable large insualator clip --- extranodes/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/extranodes/init.lua b/extranodes/init.lua index 5ed5f5f..3526f48 100644 --- a/extranodes/init.lua +++ b/extranodes/init.lua @@ -107,6 +107,7 @@ local iclip_def = { drawtype = "mesh", mesh = "technic_insulator_clip.obj", tiles = {"technic_insulator_clip.png"}, + paramtype2 = "facedir", is_ground_content = false, groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1 }, sounds = default.node_sound_stone_defaults(), -- cgit v1.2.3