mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-22 16:10:18 +01:00
Update init.lua (#400)
tweak sizes of chain selection boxes and adjust light levels of chandeliers.
This commit is contained in:
parent
1471a0cba9
commit
4d9c4c2410
@ -3,14 +3,14 @@ local S = homedecor_i18n.gettext
|
|||||||
|
|
||||||
local chains_sbox = {
|
local chains_sbox = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = { -0.1, -0.625, -0.1, 0.1, 0.5, 0.1 }
|
fixed = { -0.1, -0.5, -0.1, 0.1, 0.5, 0.1 }
|
||||||
}
|
}
|
||||||
|
|
||||||
local topchains_sbox = {
|
local topchains_sbox = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
fixed = {
|
fixed = {
|
||||||
{ -0.25, 0.35, -0.25, 0.25, 0.5, 0.25 },
|
{ -0.25, 0.35, -0.25, 0.25, 0.5, 0.25 },
|
||||||
{ -0.1, -0.625, -0.1, 0.1, 0.4, 0.1 }
|
{ -0.1, -0.5, -0.1, 0.1, 0.4, 0.1 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -73,7 +73,7 @@ minetest.register_node("chains:chain_top_brass", {
|
|||||||
minetest.register_node("chains:chandelier", {
|
minetest.register_node("chains:chandelier", {
|
||||||
description = S("Chandelier (wrought iron)"),
|
description = S("Chandelier (wrought iron)"),
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
light_source = default.LIGHT_MAX-2,
|
light_source = 12,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
climbable = true,
|
climbable = true,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
@ -99,7 +99,7 @@ minetest.register_node("chains:chandelier", {
|
|||||||
minetest.register_node("chains:chandelier_brass", {
|
minetest.register_node("chains:chandelier_brass", {
|
||||||
description = S("Chandelier (brass)"),
|
description = S("Chandelier (brass)"),
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
light_source = default.LIGHT_MAX-2,
|
light_source = 12,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
climbable = true,
|
climbable = true,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
|
Loading…
Reference in New Issue
Block a user