Fixed Bug: #0268 - MC Ladders, any way to prevent slow down?

This commit is contained in:
AlgorithmX2 2014-03-31 22:23:50 -05:00
parent 697d81d895
commit d3ac967eaa

View file

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