Examples of RidingFeature


Examples of de.kumpelblase2.remoteentities.api.features.RidingFeature

  {
    if(this.getEntityHandle() instanceof EntityHorse)
      ((EntityHorse)this.getEntityHandle()).g((EntityHuman)((EntityHorse)this.getEntityHandle()).passenger);
    else
    {
      RidingFeature ridingFeature = this.getRemoteEntity().getFeatures().getFeature(RidingFeature.class);
      ridingFeature.setRideable(true);
      if(ridingFeature instanceof TamedRidingFeature)
        ((TamedRidingFeature)ridingFeature).tame((Player)this.getEntityHandle().passenger.getBukkitEntity());
    }
  }
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.