Cable Anchor Ladders no longer stop being ladders when you stop going up.

This commit is contained in:
AlgorithmX2 2014-09-10 14:42:13 -05:00
parent 38d9f73e8a
commit 07d106cb03

View file

@ -218,7 +218,7 @@ public class PartCableAnchor implements IPart
@Override
public boolean isLadder(EntityLivingBase entity)
{
return mySide.offsetY == 0 && entity.isCollidedHorizontally;
return mySide.offsetY == 0 && ( entity.isCollidedHorizontally || ! entity.onGround );
}
@Override