Examples of FarmableGE


Examples of forestry.farming.logic.FarmableGE

    ForestryBlock.mushroom.registerBlock(new BlockMushroom(), ItemTypedBlock.class, "mushroom");

    Farmables.farmables.put("farmArboreal", new ArrayList<IFarmable>());
    Farmables.farmables.get("farmArboreal").add(new FarmableVanillaSapling());
    Farmables.farmables.get("farmArboreal").add(new FarmableGE());

    Farmables.farmables.put("farmShroom", new ArrayList<IFarmable>());
    Farmables.farmables.get("farmShroom").add(new FarmableVanillaShroom(Blocks.brown_mushroom, 0));
    Farmables.farmables.get("farmShroom").add(new FarmableVanillaShroom(Blocks.red_mushroom, 0));
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.