forked from VoxeLibre/VoxeLibre
Make open trapdoors climbable
This commit is contained in:
parent
c4c3afa375
commit
50f44c660e
|
@ -120,6 +120,10 @@ function mcl_doors:register_trapdoor(name, def)
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
|
-- TODO: Implement Minecraft behaviour: Climbable if directly above
|
||||||
|
-- ladder w/ matching orientation.
|
||||||
|
-- Current behavour: Always climbable
|
||||||
|
climbable = true,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
pointable = true,
|
pointable = true,
|
||||||
groups = groups_open,
|
groups = groups_open,
|
||||||
|
|
Loading…
Reference in New Issue