diff options
author | root <root@linuxworks.belug.de> | 2018-03-31 17:07:17 +0200 |
---|---|---|
committer | root <root@linuxworks.belug.de> | 2018-03-31 17:07:17 +0200 |
commit | 44e544f507a8eea038cda3d64994b4aaa144f669 (patch) | |
tree | c32e546c6969d7bf1cbffec0d92b4aa20ef6fc07 | |
parent | 58f84255917cdcbb6fd2be39c2a1c14e3f52df04 (diff) | |
parent | ef7f363cca2005e6920094757181e0b4c63e1120 (diff) |
Merge https://github.com/h-v-smacker/technic
-rw-r--r-- | technic/machines/register/grinder_recipes.lua | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua index 2f4b8db..b0e5f9e 100644 --- a/technic/machines/register/grinder_recipes.lua +++ b/technic/machines/register/grinder_recipes.lua @@ -22,8 +22,16 @@ local recipes = { {"technic:sulfur_lump", "technic:sulfur_dust 2"}, {"default:stone", "technic:stone_dust"}, {"default:sand", "technic:stone_dust"}, - -- recycle glass panels + -- recycle some items: {"xpanes:pane_flat 8", "vessels:glass_fragments 3"}, + {"doors:door_glass", "vessels:glass_fragments 6"}, + {"doors:door_wood", "technic:sawdust 24"}, + {"doors:trapdoor", "technic:sawdust 12"}, + {"doors:trapdoor_steel", "technic:wrought_iron_dust 4"}, + {"doors:door_obsidian_glass", "default:obsidian_shard 6"}, + {"doors:door_steel", "technic:wrought_iron_dust 6"}, + {"default:sign_wall_steel", "technic:wrought_iron_dust 2"}, + {"default:sign_wall_wood", "technic:sawdust 8"}, -- Other {"default:cobble", "default:gravel"}, @@ -37,6 +45,18 @@ if minetest.get_modpath("ethereal") then table.insert(recipes, {"ethereal:charcoal_lump 5", "technic:coal_dust 1"}) end +if minetest.get_modpath("moreblocks") then + table.insert(recipes, {"moreblocks:cobble_compressed", "default:gravel 9"}) + -- there is no other place to throw in the cooking recipe + minetest.register_craft({ + type = "cooking", + cooktime = 5, + output = "default:stone 9", + recipe = "moreblocks:cobble_compressed" + }) +end + + -- defuse the sandstone -> 4 sand recipe to avoid infinite sand bugs (also consult the inverse compressor recipe) -- this snippet, when executed, also corrupts some dye+wool combinations. A remedial -- workaround is included in extractor recipes, since it's where we work with dyes. |