move from recipe defusion to recipe deactivation to avoid confusion

This commit is contained in:
Tim 2015-01-30 20:15:15 +01:00
parent a0cf9eb8f3
commit 6dd7ffc455
2 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ local recipes = {
-- defuse the default sandstone recipe, since we have the compressor to take over in a more realistic manner -- defuse the default sandstone recipe, since we have the compressor to take over in a more realistic manner
minetest.register_craft({ minetest.register_craft({
output = "default:sand 4", output = "default:sand 0",
recipe = { recipe = {
{'group:sand', 'group:sand'}, {'group:sand', 'group:sand'},
{'group:sand', 'group:sand'} {'group:sand', 'group:sand'}

View File

@ -28,7 +28,7 @@ local recipes = {
-- defuse the sandstone -> 4 sand recipe to avoid infinite sand bugs (also consult the inverse compressor recipe) -- defuse the sandstone -> 4 sand recipe to avoid infinite sand bugs (also consult the inverse compressor recipe)
minetest.register_craft({ minetest.register_craft({
output = "default:sandstone", output = "default:sandstone 0",
recipe = { recipe = {
{'default:sandstone'} {'default:sandstone'}
}, },
@ -62,8 +62,8 @@ end
-- defuse common grinder unfriendly recipes -- defuse common grinder unfriendly recipes
if minetest.get_modpath("fake_fire") then -- from homedecor_modpack if minetest.get_modpath("fake_fire") then -- from homedecor_modpack
minetest.register_craft({ output='default:cobble', recipe={{'default:cobble'}}}) minetest.register_craft({ output='default:cobble', recipe={{'default:cobble 0'}}})
minetest.register_craft({ output='default:gravel', recipe={{'default:gravel'}}}) minetest.register_craft({ output='default:gravel', recipe={{'default:gravel 0'}}})
end end
-- dusts -- dusts