forked from minetest-mods/mesecons
Fix all crafting recipes to use modern style
This commit is contained in:
@ -20,7 +20,7 @@ minetest.register_node("mesecons_switch:mesecon_switch_on", {
|
||||
tiles = {"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_on.png"},
|
||||
paramtype2="facedir",
|
||||
groups = {dig_immediate=2,not_in_creative_inventory=1},
|
||||
drop='"mesecons_switch:mesecon_switch_off" 1',
|
||||
drop="mesecons_switch:mesecon_switch_off 1",
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
mesecons = {receptor = {
|
||||
state = mesecon.state.on
|
||||
@ -33,9 +33,9 @@ minetest.register_node("mesecons_switch:mesecon_switch_on", {
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = '"mesecons_switch:mesecon_switch_off" 2',
|
||||
output = "mesecons_switch:mesecon_switch_off 2",
|
||||
recipe = {
|
||||
{'"default:steel_ingot"', '"default:cobble"', '"default:steel_ingot"'},
|
||||
{'"group:mesecon_conductor_craftable"','', '"group:mesecon_conductor_craftable"'},
|
||||
{"default:steel_ingot", "default:cobble", "default:steel_ingot"},
|
||||
{"group:mesecon_conductor_craftable","", "group:mesecon_conductor_craftable"},
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user