mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2025-07-15 20:20:28 +02:00
Added ceiling-mounted glow cube. The regular and ceiling ones can be exchanged
by placing either into the crafting glid. Works for both colors.
This commit is contained in:
32
crafts.lua
32
crafts.lua
@ -1109,6 +1109,22 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "homedecor:glowlight_small_cube_yellow_ceiling",
|
||||
recipe = {
|
||||
"homedecor:glowlight_small_cube_yellow",
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "homedecor:glowlight_small_cube_yellow",
|
||||
recipe = {
|
||||
"homedecor:glowlight_small_cube_yellow_ceiling",
|
||||
}
|
||||
})
|
||||
|
||||
-- white
|
||||
|
||||
minetest.register_craft({
|
||||
@ -1144,6 +1160,22 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "homedecor:glowlight_small_cube_white_ceiling",
|
||||
recipe = {
|
||||
"homedecor:glowlight_small_cube_white",
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "homedecor:glowlight_small_cube_white",
|
||||
recipe = {
|
||||
"homedecor:glowlight_small_cube_white_ceiling",
|
||||
}
|
||||
})
|
||||
|
||||
-- Fences and gates
|
||||
|
||||
minetest.register_craft( {
|
||||
|
Reference in New Issue
Block a user