Package extrabiomes.blocks

Examples of extrabiomes.blocks.BlockLeafPile


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

    final BlockLeafPile block = new BlockLeafPile(64, Material.vine);
    block.setBlockName("extrabiomes.leafpile").setHardness(0.0F).setTickRandomly(true).setStepSound(Block.soundTypeGrass).setCreativeTab(Extrabiomes.tabsEBXL);

    final CommonProxy proxy = Extrabiomes.proxy;
    proxy.registerBlock(block, "leaf_pile");
    Blocks.fire.setFireInfo(block, 30, 60);
View Full Code Here

TOP

Related Classes of extrabiomes.blocks.BlockLeafPile

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.