Cable Anchor Ladders no longer stop being ladders when you stop going up.
This commit is contained in:
parent
38d9f73e8a
commit
07d106cb03
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue