Corrected lightbar recipe

This commit is contained in:
Grossam 2019-04-23 13:58:06 +02:00
parent f559f25e07
commit 643e3c40db
1 changed files with 5 additions and 3 deletions

View File

@ -96,11 +96,13 @@ minetest.register_craft({
}
})
-- 6 ceiling light from 2 plastic and 1 trap super glow glass
-- 8 ceiling light from 2 plastic and 1 meselamp
-- Old recipe used "moreblocks:trap_super_glow_glass"
-- but moreblocks is an optional dependance
minetest.register_craft({
output = "scifi_nodes:lightbar 6",
output = "scifi_nodes:lightbar 8",
recipe = {
{"scifi_nodes:white2", "moreblocks:trap_super_glow_glass", "scifi_nodes:white2"}
{"scifi_nodes:white2", "default:meselamp", "scifi_nodes:white2"}
}
})