Examples of WorldGenBigMushroom


Examples of forestry.farming.worldgen.WorldGenBigMushroom

  private final ItemStack[] drops;

  public BlockMushroom() {
    super();
    setHardness(0.0f);
    this.generators = new WorldGenerator[] { new WorldGenBigMushroom(Blocks.brown_mushroom_block), new WorldGenBigMushroom(Blocks.red_mushroom_block) };
    this.drops = new ItemStack[] { new ItemStack(Blocks.brown_mushroom), new ItemStack(Blocks.red_mushroom) };
    setCreativeTab(null);
    setTickRandomly(true);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.