summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim <t4im@users.noreply.github.com>2015-01-30 20:15:15 +0100
committerTim <t4im@users.noreply.github.com>2015-01-30 20:15:15 +0100
commit6dd7ffc4556a6d5673c6798d569408fc01953a19 (patch)
tree0f63292c8328bf3127b6ebabbeb5e4ba2475a928
parenta0cf9eb8f325b054b180c0becc7f1b0cb7751350 (diff)
move from recipe defusion to recipe deactivation to avoid confusion
-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