Examples of ranch()


Examples of powercrystals.minefactoryreloaded.api.IFactoryRanchable.ranch()

    {
      EntityLiving e = (EntityLiving)o;
      if(MFRRegistry.getRanchables().containsKey(e.getClass()))
      {
        IFactoryRanchable r = MFRRegistry.getRanchables().get(e.getClass());
        List<ItemStack> drops = r.ranch(worldObj, e, this);
        if(drops != null)
        {
          for(ItemStack s : drops)
          {
            if(LiquidContainerRegistry.isLiquid(s))
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.