summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--technic/machines/register/compressor_recipes.lua2
-rw-r--r--technic/machines/register/grinder_recipes.lua6
2 files changed, 4 insertions, 4 deletions
diff --git a/technic/machines/register/compressor_recipes.lua b/technic/machines/register/compressor_recipes.lua
index bc65b25..872be04 100644
--- a/technic/machines/register/compressor_recipes.lua
+++ b/technic/machines/register/compressor_recipes.lua
@@ -21,7 +21,7 @@ local recipes = {
-- defuse the default sandstone recipe, since we have the compressor to take over in a more realistic manner
minetest.register_craft({
- output = "default:sand 4",
+ output = "default:sand 0",
recipe = {
{'group:sand', 'group:sand'},
{'group:sand', 'group:sand'}
diff --git a/technic/machines/register/grinder_recipes.lua b/technic/machines/register/grinder_recipes.lua
index e5ad895..4f544e9 100644
--- a/technic/machines/register/grinder_recipes.lua
+++ b/technic/machines/register/grinder_recipes.lua
@@ -28,7 +28,7 @@ local recipes = {
-- defuse the sandstone -> 4 sand recipe to avoid infinite sand bugs (also consult the inverse compressor recipe)
minetest.register_craft({
- output = "default:sandstone",
+ output = "default:sandstone 0",
recipe = {
{'default:sandstone'}
},
@@ -62,8 +62,8 @@ end
-- defuse common grinder unfriendly recipes
if minetest.get_modpath("fake_fire") then -- from homedecor_modpack
- minetest.register_craft({ output='default:cobble', recipe={{'default:cobble'}}})
- minetest.register_craft({ output='default:gravel', recipe={{'default:gravel'}}})
+ minetest.register_craft({ output='default:cobble', recipe={{'default:cobble 0'}}})
+ minetest.register_craft({ output='default:gravel', recipe={{'default:gravel 0'}}})
end
-- dusts