1
0
mirror of https://github.com/minetest-mods/mesecons.git synced 2025-07-24 09:40:17 +02:00

Changed Microcontroller and LuaController recipes

This commit changes the recipes for the Microcontroller and LuaController.

The Microcontroller is slightly simplifyed, so it no longer masks the recipe
for the LuaController (which otherwise remains unchanged); now both objects
can be crafted freely.

New: A new LuaController recipe, by using 3x Microcontroller parts in the top
row will also produce two LuaControllers.

See also: minetest-mods/mesecons#339
This commit is contained in:
David E
2017-07-09 21:46:56 -04:00
parent 564bdc2d9b
commit 377384cec7
2 changed files with 11 additions and 2 deletions
mesecons_luacontroller
mesecons_microcontroller

@ -675,6 +675,15 @@ minetest.register_node(BASENAME .. "_burnt", {
-- Craft Registration --
------------------------
minetest.register_craft({
output = BASENAME.."0000 2",
recipe = {
{'mesecons_microcontroller:microcontroller0000', 'mesecons_microcontroller:microcontroller0000', 'mesecons_microcontroller:microcontroller0000'},
{'', '', ''},
{'', '', ''},
}
})
minetest.register_craft({
output = BASENAME.."0000 2",
recipe = {

@ -148,8 +148,8 @@ minetest.register_craft({
output = 'craft "mesecons_microcontroller:microcontroller0000" 2',
recipe = {
{'mesecons_materials:silicon', 'mesecons_materials:silicon', 'group:mesecon_conductor_craftable'},
{'mesecons_materials:silicon', 'mesecons_materials:silicon', 'group:mesecon_conductor_craftable'},
{'group:mesecon_conductor_craftable', 'group:mesecon_conductor_craftable', ''},
{'mesecons_materials:silicon', 'group:mesecon_conductor_craftable', 'group:mesecon_conductor_craftable'},
{'', '', ''},
}
})