Make ladders solid

This commit is contained in:
Wuzzy 2017-03-01 15:40:30 +01:00
parent 5f20b18d32
commit 38d1e820b2
1 changed files with 6 additions and 4 deletions

View File

@ -1150,13 +1150,15 @@ minetest.register_node("mcl_core:ladder", {
wield_image = "default_ladder.png",
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
walkable = true,
climbable = true,
node_box = {
type = "wallmounted",
wall_side = { -0.5, -0.5, -0.5, -7/16, 0.5, 0.5 },
},
selection_box = {
type = "wallmounted",
--wall_top = = <default>
--wall_bottom = = <default>
--wall_side = = <default>
wall_side = { -0.5, -0.5, -0.5, -7/16, 0.5, 0.5 },
},
stack_max = 64,
groups = {handy=1,axey=1, attached_node=1, deco_block=1},