Examples of NotRideableException


Examples of de.kumpelblase2.remoteentities.exceptions.NotRideableException

  @Deprecated
  public DesireTameByRiding(RemoteEntity inEntity, double inSpeed)
  {
    super(inEntity);
    if(!(inEntity.getHandle() instanceof EntityHorse) && !inEntity.getFeatures().hasFeature(RidingFeature.class))
      throw new NotRideableException();

    this.m_speed = inSpeed;
    this.m_type = DesireType.PRIMAL_INSTINCT;
  }
View Full Code Here

Examples of de.kumpelblase2.remoteentities.exceptions.NotRideableException

  @Override
  public boolean shouldExecute()
  {
    if(!(this.getEntityHandle() instanceof EntityHorse) && !this.m_entity.getFeatures().hasFeature(RidingFeature.class))
      throw new NotRideableException();

    if(!this.canBeRidden() && this.getEntityHandle().passenger != null)
    {
      Vec3D vec = de.kumpelblase2.remoteentities.nms.RandomPositionGenerator.a(this.getEntityHandle(), 5, 4);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.