Package extrabiomes.blocks

Examples of extrabiomes.blocks.BlockCustomTallGrass


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

    final BlockCustomTallGrass block = new BlockCustomTallGrass(48, Material.vine);
    block.setBlockName("extrabiomes.tallgrass").setHardness(0.0F).setStepSound(Block.soundTypeGrass).setCreativeTab(Extrabiomes.tabsEBXL);

    final CommonProxy proxy = Extrabiomes.proxy;
    proxy.registerBlock(block, extrabiomes.items.ItemGrass.class, "grass");
    Blocks.fire.setFireInfo(block, 60, 100);
View Full Code Here

TOP

Related Classes of extrabiomes.blocks.BlockCustomTallGrass

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.