forked from mtcontrib/homedecor_modpack
use dye to create frosted skylight
use furnace to turn it back into clear one
This commit is contained in:
parent
fe6a5e1a84
commit
f9b3160c1d
@ -342,14 +342,17 @@ minetest.register_craft( {
|
|||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft( {
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = "homedecor:skylight",
|
output = "homedecor:skylight_frosted",
|
||||||
recipe = { "homedecor:skylight_frosted" },
|
recipe = {
|
||||||
|
"dye:white",
|
||||||
|
"homedecor:skylight"
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft( {
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "cooking",
|
||||||
output = "homedecor:skylight_frosted",
|
output = "homedecor:skylight",
|
||||||
recipe = { "homedecor:skylight" },
|
recipe = "homedecor:skylight_frosted",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Various colors of shutters
|
-- Various colors of shutters
|
||||||
|
Loading…
Reference in New Issue
Block a user