Package extrabiomes.blocks

Examples of extrabiomes.blocks.BlockNewSapling


  private static void createNewSapling() {
    if (!ModuleControlSettings.SUMMA.isEnabled() || !BlockSettings.NEWSAPLING.getEnabled())
      return;

    final BlockNewSapling block = new BlockNewSapling();
    block.setBlockName("extrabiomes.sapling").setHardness(0.0F).setStepSound(Block.soundTypeGrass).setCreativeTab(Extrabiomes.tabsEBXL);

    final CommonProxy proxy = Extrabiomes.proxy;
    proxy.registerBlock(block, extrabiomes.items.ItemNewSapling.class, "saplings_2");
    proxy.registerOreInAllSubblocks("treeSapling", block);
View Full Code Here

TOP

Related Classes of extrabiomes.blocks.BlockNewSapling

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.