Add furnace recipe back again

This commit is contained in:
Wuzzy 2017-02-21 01:44:15 +01:00
parent 20c84b98f8
commit 561d23678a
1 changed files with 8 additions and 0 deletions

View File

@ -304,3 +304,11 @@ minetest.register_node("mcl_furnaces:furnace_active", {
on_receive_fields = craftguide,
})
minetest.register_craft({
output = "mcl_furnaces:furnace",
recipe = {
{ "mcl_core:cobble", "mcl_core:cobble", "mcl_core:cobble" },
{ "mcl_core:cobble", "", "mcl_core:cobble" },
{ "mcl_core:cobble", "mcl_core:cobble", "mcl_core:cobble" },
}
})