Fix wood slab craft

This commit is contained in:
Wuzzy 2017-01-10 06:44:36 +01:00
parent 4bed5f7c10
commit 94e8f85216
1 changed files with 4 additions and 2 deletions

View File

@ -139,12 +139,14 @@ minetest.register_node("mesecons_solarpanel:solar_panel_inverted_off", {
}}
})
-- Unofficial craft
-- TODO: Make solar panel switch on user action, so this craft can be removed
minetest.register_craft({
output = '"mesecons_solarpanel:solar_panel_inverted_off" 1',
recipe = {
{'default:glass', 'default:glass', 'default:glass'},
{'group:wood_slab', 'group:wood_slab', 'group:wood_slab'},
{'default:quartz_crystal', 'default:quartz_crystal', 'default:quartz_crystal'},
{'group:slab_wood', 'group:slab_wood', 'group:slab_wood'},
{'default:glass', 'default:glass', 'default:glass'},
}
})