forked from mtcontrib/homedecor_modpack
make table- and standing-lamps return "hi"
brightness version, instead of "off". do the same for their crafts.
This commit is contained in:
parent
798ff29b0a
commit
bed4d1e6f8
@ -893,7 +893,7 @@ local function reg_lamp(suffix, nxt, light, brightness)
|
|||||||
on_construct = unifieddyes.on_construct,
|
on_construct = unifieddyes.on_construct,
|
||||||
drop = {
|
drop = {
|
||||||
items = {
|
items = {
|
||||||
{items = {"homedecor:table_lamp_off"}, inherit_color = true },
|
{items = {"homedecor:table_lamp_hi"}, inherit_color = true },
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -928,7 +928,7 @@ local function reg_lamp(suffix, nxt, light, brightness)
|
|||||||
--expand = { top="air" },
|
--expand = { top="air" },
|
||||||
drop = {
|
drop = {
|
||||||
items = {
|
items = {
|
||||||
{items = {"homedecor:standing_lamp_off"}, inherit_color = true },
|
{items = {"homedecor:standing_lamp_hi"}, inherit_color = true },
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -1461,19 +1461,19 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:standing_lamp_off",
|
output = "homedecor:standing_lamp_hi",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"homedecor:table_lamp_off"},
|
{"homedecor:table_lamp_hi"},
|
||||||
{"group:stick"},
|
{"group:stick"},
|
||||||
{"group:stick"},
|
{"group:stick"},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
unifieddyes.register_color_craft({
|
unifieddyes.register_color_craft({
|
||||||
output = "homedecor:standing_lamp_off",
|
output = "homedecor:standing_lamp_hi",
|
||||||
palette = "extended",
|
palette = "extended",
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
neutral_node = "homedecor:standing_lamp_off",
|
neutral_node = "homedecor:standing_lamp_hi",
|
||||||
recipe = {
|
recipe = {
|
||||||
"NEUTRAL_NODE",
|
"NEUTRAL_NODE",
|
||||||
"MAIN_DYE"
|
"MAIN_DYE"
|
||||||
@ -1482,12 +1482,12 @@ unifieddyes.register_color_craft({
|
|||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "fuel",
|
type = "fuel",
|
||||||
recipe = "homedecor:table_lamp_off",
|
recipe = "homedecor:table_lamp_hi",
|
||||||
burntime = 10,
|
burntime = 10,
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:table_lamp_off",
|
output = "homedecor:table_lamp_hi",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "wool:white", "default:torch", "wool:white"},
|
{ "wool:white", "default:torch", "wool:white"},
|
||||||
{ "", "group:stick", ""},
|
{ "", "group:stick", ""},
|
||||||
@ -1496,7 +1496,7 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:table_lamp_off",
|
output = "homedecor:table_lamp_hi",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "cottages:wool", "default:torch", "cottages:wool"},
|
{ "cottages:wool", "default:torch", "cottages:wool"},
|
||||||
{ "", "group:stick", ""},
|
{ "", "group:stick", ""},
|
||||||
@ -1505,7 +1505,7 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:table_lamp_off",
|
output = "homedecor:table_lamp_hi",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "wool:white", "default:torch", "wool:white"},
|
{ "wool:white", "default:torch", "wool:white"},
|
||||||
{ "", "group:stick", ""},
|
{ "", "group:stick", ""},
|
||||||
@ -1514,7 +1514,7 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "homedecor:table_lamp_off",
|
output = "homedecor:table_lamp_hi",
|
||||||
recipe = {
|
recipe = {
|
||||||
{ "cottages:wool", "default:torch", "cottages:wool"},
|
{ "cottages:wool", "default:torch", "cottages:wool"},
|
||||||
{ "", "group:stick", ""},
|
{ "", "group:stick", ""},
|
||||||
@ -1523,10 +1523,10 @@ minetest.register_craft({
|
|||||||
})
|
})
|
||||||
|
|
||||||
unifieddyes.register_color_craft({
|
unifieddyes.register_color_craft({
|
||||||
output = "homedecor:table_lamp_off",
|
output = "homedecor:table_lamp_hi",
|
||||||
palette = "extended",
|
palette = "extended",
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
neutral_node = "homedecor:table_lamp_off",
|
neutral_node = "homedecor:table_lamp_hi",
|
||||||
recipe = {
|
recipe = {
|
||||||
"NEUTRAL_NODE",
|
"NEUTRAL_NODE",
|
||||||
"MAIN_DYE"
|
"MAIN_DYE"
|
||||||
|
Loading…
Reference in New Issue
Block a user