[1.12.1] You can place ladders on ALL THE THINGS.
quat1024 opened this issue ยท 1 comments
You've probably heard that 1.12 tweaked the way ladders are placed and fences connect to blocks. They did this with block face shapes - anything that returns BlockFaceShape.SOLID
from the Block.getBlockFaceShape
method from the appropriate side will have ladders placed, snow layers atop, and fenceposts connect against that side.
Well guess what the default return value in getBlockFaceShape
is.
I fixed this in my mod by just returning BlockFaceShape.UNDEFINED
from that method.