Package WayofTime.alchemicalWizardry.api.harvest

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

Related Classes of WayofTime.alchemicalWizardry.api.harvest.IHarvestHandler

Copyright © 2018 www.massapicom. 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.