summaryrefslogtreecommitdiff
path: root/technic/machines/register/grinder_recipes.lua
diff options
context:
space:
mode:
Diffstat (limited to 'technic/machines/register/grinder_recipes.lua')
-rw-r--r--technic/machines/register/grinder_recipes.lua22
1 files changed, 17 insertions, 5 deletions
diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua
index 1f4047c..8c8e178 100644
--- a/technic/machines/register/grinder_recipes.lua
+++ b/technic/machines/register/grinder_recipes.lua
@@ -23,17 +23,29 @@ local recipes = {
{"technic:sulfur_lump", "technic:sulfur_dust 2"},
{"default:stone", "technic:stone_dust"},
{"default:sand", "technic:stone_dust"},
-
+
-- Other
- {"default:cobble", "default:gravel"},
- {"default:gravel", "default:sand"},
- {"default:sandstone", "default:sand 2"}, -- reverse recipe can be found in the compressor
+ {"default:cobble", "default:gravel"},
+ {"default:gravel", "default:sand"},
+ {"default:sandstone", "default:sand 2"}, -- reverse recipe can be found in the compressor
+ {"default:desert_sandstone", "default:desert_sand 2"}, -- reverse recipe can be found in the compressor
+ {"default:silver_sandstone", "default:silver_sand 2"}, -- reverse recipe can be found in the compressor
}
-- defuse the sandstone -> 4 sand recipe to avoid infinite sand bugs (also consult the inverse compressor recipe)
minetest.clear_craft({
recipe = {
- {'default:sandstone'}
+ {"default:sandstone"}
+ },
+})
+minetest.clear_craft({
+ recipe = {
+ {"default:desert_sandstone"}
+ },
+})
+minetest.clear_craft({
+ recipe = {
+ {"default:silver_sandstone"}
},
})