mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 05:42:33 +01:00
move from recipe defusion to recipe deactivation to avoid confusion
This commit is contained in:
parent
a0cf9eb8f3
commit
6dd7ffc455
@ -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'}
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user