Package extrabiomes.blocks

Examples of extrabiomes.blocks.BlockQuarterLog


    final boolean blockIDSW = BlockSettings.QUARTERLOG2.getEnabled();
    final boolean blockIDSE = BlockSettings.QUARTERLOG3.getEnabled();
    if (!ModuleControlSettings.SUMMA.isEnabled() || !blockIDNE || !blockIDNW || !blockIDSE || !blockIDSW)
      return;

    final BlockQuarterLog blockNW = new BlockQuarterLog(BlockSettings.QUARTERLOG0, 144, BlockQuarterLog.BarkOn.NW);
    final BlockQuarterLog blockNE = new BlockQuarterLog(BlockSettings.QUARTERLOG1, 144, BlockQuarterLog.BarkOn.NE);
    final BlockQuarterLog blockSW = new BlockQuarterLog(BlockSettings.QUARTERLOG2, 144, BlockQuarterLog.BarkOn.SW);
    final BlockQuarterLog blockSE = new BlockQuarterLog(BlockSettings.QUARTERLOG3, 144, BlockQuarterLog.BarkOn.SE);

    for (final BlockQuarterLog block : new BlockQuarterLog[] { blockNW, blockNE, blockSW, blockSE }) {
      block.setBlockName("extrabiomes.log.quarter").setStepSound(Block.soundTypeWood).setHardness(2.0F).setResistance(Blocks.log.getExplosionResistance(null) * 5.0F);

      final CommonProxy proxy = Extrabiomes.proxy;
View Full Code Here

TOP

Related Classes of extrabiomes.blocks.BlockQuarterLog

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.