mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-06-28 13:56:02 +02:00
Fix all crafting recipes to use modern style
This commit is contained in:
@ -29,7 +29,7 @@ minetest.register_node("mesecons:mesecon_on", {
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
|
||||
},
|
||||
groups = {dig_immediate=3, not_in_creaive_inventory=1, mesecon=1},
|
||||
drop = '"mesecons:mesecon_off" 1',
|
||||
drop = "mesecons:mesecon_off 1",
|
||||
light_source = LIGHT_MAX-11,
|
||||
mesecons = {conductor={
|
||||
state = mesecon.state.on,
|
||||
|
@ -276,6 +276,6 @@ end
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = '"mesecons:wire_00000000_off" 16',
|
||||
output = "mesecons:wire_00000000_off 16",
|
||||
recipe = "default:mese_crystal",
|
||||
})
|
||||
|
Reference in New Issue
Block a user