Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.halestormxv.worldALT.biomes;
- import java.util.Random;
- import com.halestormxv.blocks.CelestialCraft_blocks;
- import net.minecraft.world.World;
- import net.minecraft.world.gen.feature.WorldGenVines;
- public class BiomeDarkForest extends ModBiomes{
- public BiomeDarkForest(int biomeId) {
- super(biomeId);
- this.theBiomeDecorator.treesPerChunk = 30;
- this.theBiomeDecorator.grassPerChunk = 5;
- this.theBiomeDecorator.flowersPerChunk = 1;
- this.topBlock = CelestialCraft_blocks.lightForestGrass;
- this.fillerBlock = CelestialCraft_blocks.lightForestDirt;
- }
- /**
- * Remove this to remove vines from dimension
- */
- public void decorate(World world, Random random, int par3, int par4) {
- super.decorate(world, random, par3, par4);
- // WorldGenVines worldgenvines = new WorldGenVines();
- //
- // for (int k = 0; k < 50; ++k) {
- // int l = par3 + random.nextInt(16) + 8;
- // byte b0 = 64;
- // int i1 = par4 + random.nextInt(16) + 8;
- // worldgenvines.generate(world, random, l, b0, i1);
- // }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment