Package extrabiomes.blocks

Examples of extrabiomes.blocks.BlockCustomSapling


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

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

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

TOP

Related Classes of extrabiomes.blocks.BlockCustomSapling

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.