Make open trapdoors climbable

This commit is contained in:
Wuzzy 2017-06-07 03:59:29 +02:00
parent c4c3afa375
commit 50f44c660e
1 changed files with 4 additions and 0 deletions

View File

@ -120,6 +120,10 @@ function mcl_doors:register_trapdoor(name, def)
is_ground_content = false,
paramtype = "light",
paramtype2 = "facedir",
-- TODO: Implement Minecraft behaviour: Climbable if directly above
-- ladder w/ matching orientation.
-- Current behavour: Always climbable
climbable = true,
sunlight_propagates = true,
pointable = true,
groups = groups_open,