From 4d9c4c2410cac3d7f3ab83d66121f830f826cc0c Mon Sep 17 00:00:00 2001 From: DoogMitt <34732618+DooGith@users.noreply.github.com> Date: Wed, 20 Dec 2017 21:45:30 -0900 Subject: [PATCH] Update init.lua (#400) tweak sizes of chain selection boxes and adjust light levels of chandeliers. --- chains/init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chains/init.lua b/chains/init.lua index 0820f3ff..e7d2255a 100644 --- a/chains/init.lua +++ b/chains/init.lua @@ -3,14 +3,14 @@ local S = homedecor_i18n.gettext local chains_sbox = { 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 = { type = "fixed", fixed = { { -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", { description = S("Chandelier (wrought iron)"), paramtype = "light", - light_source = default.LIGHT_MAX-2, + light_source = 12, walkable = false, climbable = true, sunlight_propagates = true, @@ -99,7 +99,7 @@ minetest.register_node("chains:chandelier", { minetest.register_node("chains:chandelier_brass", { description = S("Chandelier (brass)"), paramtype = "light", - light_source = default.LIGHT_MAX-2, + light_source = 12, walkable = false, climbable = true, sunlight_propagates = true,