Examples of IHarvestHandler


Examples of WayofTime.alchemicalWizardry.api.harvest.IHarvestHandler

public class BloodMagic implements IThirdParty{

    @Override
    public void preInit(){
        HarvestRegistry.registerHarvestHandler(new IHarvestHandler(){
            @Override
            public boolean harvestAndPlant(World world, int xCoord, int yCoord, int zCoord, Block block, int meta){
                List<ItemStack> seeds = new ArrayList<ItemStack>();
                ((ItemPlasticPlants)Itemss.plasticPlant).addSubItems(seeds);
                for(ItemStack seed : seeds) {
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.