Package powercrystals.minefactoryreloaded.modhelpers.forestry.trees

Examples of powercrystals.minefactoryreloaded.modhelpers.forestry.trees.FertilizableForestryTree


        Item peat = (Item)forestryItems.getField("peat").get(null);
        MFRRegistry.registerSludgeDrop(5, new ItemStack(peat));
      }
     
      MFRRegistry.registerPlantable(new PlantableForestryTree());
      MFRRegistry.registerFertilizable(new FertilizableForestryTree());
     
      for(Field f : Class.forName("forestry.core.config.ForestryBlock").getDeclaredFields())
      {
        if(f.getName().contains("log"))
        {
View Full Code Here

TOP

Related Classes of powercrystals.minefactoryreloaded.modhelpers.forestry.trees.FertilizableForestryTree

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.