Package forestry.arboriculture.worldgen

Source Code of forestry.arboriculture.worldgen.WorldGenDarkOak

/*******************************************************************************
* Copyright (c) 2011-2014 SirSengir.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v3
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl-3.0.txt
*
* Various Contributors including, but not limited to:
* SirSengir (original work), CovertJaguar, Player, Binnie, MysteriousAges
******************************************************************************/
package forestry.arboriculture.worldgen;

import net.minecraft.init.Blocks;
import forestry.api.world.ITreeGenData;
import forestry.core.worldgen.BlockType;

public class WorldGenDarkOak extends WorldGenTree {

  public WorldGenDarkOak(ITreeGenData tree) {
    super(tree);
  }
  @Override
  public BlockType getWood() {
    return new BlockType(Blocks.log2, 1);
  }

}
TOP

Related Classes of forestry.arboriculture.worldgen.WorldGenDarkOak

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.