Examples of TradingFeature


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

    EntityLiving entity = this.getEntityHandle();
    if(!(entity instanceof EntityVillager))
    {
      if(this.getRemoteEntity().getFeatures().hasFeature(TradingFeature.class))
      {
        TradingFeature feature = this.getRemoteEntity().getFeatures().getFeature(TradingFeature.class);
        if(feature.getTradingPlayers().size() != 0)
        {
          this.m_target = ((CraftLivingEntity)feature.getTradingPlayers().get(feature.getTradingPlayers().size() - 1)).getHandle();
          return true;
        }
      }

      return false;
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.