123124125126127128129130131132133
@Override public MinecartMember<?> next() { try { return listIter.next(); } catch (ConcurrentModificationException ex) { throw new MemberMissingException(); } } @Override public void remove() {
370371372373374375376377378379
* @throws MemberMissingException */ public void checkMissing() throws MemberMissingException { if (entity.isDead()) { this.onDie(); throw new MemberMissingException(); } else if (this.isUnloaded()) { throw new MemberMissingException(); } }
975976977978979980981982983984985
} // Kill entity if falling into the void if (entity.loc.getY() < -64.0D) { this.onDie(); throw new MemberMissingException(); } // Perform gravity if (!isMovementControlled()) { entity.vel.y.subtract(getRailLogic().getGravityMultiplier(this));