diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2018-02-13 14:05:34 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2018-02-13 14:05:34 -0500 |
commit | 335d9a3eddcb590c3ca5de9cba9b152e5e560af1 (patch) | |
tree | 1b95d73b945fbc9924438c28a35d7f1019fa255f /chains | |
parent | 1d0f113f4c5afcf8479973f2e01786fb9a1fbbb7 (diff) | |
download | dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar.gz dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar.bz2 dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.tar.xz dreambuilder_modpack-335d9a3eddcb590c3ca5de9cba9b152e5e560af1.zip |
removed boost_cart and carbone_mobs -- too many crashes
updated blox, homedecor, plantlifed, cottages, farming_redo,
framedglass, gloopblocks, mesecons, moreblocks, moretrees,
pipeworks, player_textures, replacer, signs_lib, stained_glass,
technic, travelnet, unified_inventory, unifieddyes, and worldedit.
Diffstat (limited to 'chains')
-rw-r--r-- | chains/init.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chains/init.lua b/chains/init.lua index 0820f3f..e7d2255 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, |