Package extrabiomes.blocks

Examples of extrabiomes.blocks.BlockNewLog


    }

    if (!ModuleControlSettings.SUMMA.isEnabled() || !BlockSettings.NEWLOG.getEnabled())
      return;

    final BlockNewLog block2 = new BlockNewLog(BlockSettings.NEWLOG);
    block2.setBlockName("extrabiomes.newlog").setStepSound(Block.soundTypeWood).setHardness(2.0F).setResistance(Blocks.log.getExplosionResistance(null) * 5.0F).setCreativeTab(Extrabiomes.tabsEBXL);

    proxy.setBlockHarvestLevel(block2, "axe", 0);
    proxy.registerBlock(block2, extrabiomes.utility.MultiItemBlock.class, "log2");
    proxy.registerOreInAllSubblocks("logWood", block2);
    proxy.registerEventHandler(block2);
View Full Code Here

TOP

Related Classes of extrabiomes.blocks.BlockNewLog

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.