Package extrabiomes.blocks

Examples of extrabiomes.blocks.BlockCustomLog


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

    final BlockCustomLog block = new BlockCustomLog();
    block.setBlockName("extrabiomes.log").setStepSound(Block.soundTypeWood).setHardness(2.0F).setResistance(Blocks.log.getExplosionResistance(null) * 5.0F)
        .setCreativeTab(Extrabiomes.tabsEBXL);

    final CommonProxy proxy = Extrabiomes.proxy;
    proxy.setBlockHarvestLevel(block, "axe", 0);
    proxy.registerBlock(block, extrabiomes.utility.MultiItemBlock.class, "log1");
View Full Code Here

TOP

Related Classes of extrabiomes.blocks.BlockCustomLog

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.