Guest User

Untitled

a guest
Aug 28th, 2015
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.09 KB | None | 0 0
  1. package com.halestormxv.worldALT.biomes;
  2.  
  3. import java.util.Random;
  4.  
  5. import com.halestormxv.blocks.CelestialCraft_blocks;
  6.  
  7. import net.minecraft.world.World;
  8. import net.minecraft.world.gen.feature.WorldGenVines;
  9.  
  10. public class BiomeDarkForest extends ModBiomes{
  11.  
  12.     public BiomeDarkForest(int biomeId) {
  13.         super(biomeId);
  14.         this.theBiomeDecorator.treesPerChunk = 30;
  15.         this.theBiomeDecorator.grassPerChunk = 5;
  16.         this.theBiomeDecorator.flowersPerChunk = 1;
  17.        
  18.         this.topBlock = CelestialCraft_blocks.lightForestGrass;
  19.         this.fillerBlock = CelestialCraft_blocks.lightForestDirt;
  20.     }
  21.    
  22.     /**
  23.      * Remove this to remove vines from dimension
  24.      */
  25.     public void decorate(World world, Random random, int par3, int par4) {
  26.         super.decorate(world, random, par3, par4);
  27. //        WorldGenVines worldgenvines = new WorldGenVines();
  28. //
  29. //        for (int k = 0; k < 50; ++k) {
  30. //            int l = par3 + random.nextInt(16) + 8;
  31. //            byte b0 = 64;
  32. //            int i1 = par4 + random.nextInt(16) + 8;
  33. //            worldgenvines.generate(world, random, l, b0, i1);
  34. //        }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment