Advertisement
wolfgang798

how to make a Biome

Sep 25th, 2012
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. public static final BiomeGenBase ??? = (new BiomeGen???(200)).setBiomeName("???");
  2.  
  3.  
  4.  
  5.  
  6.  
  7. ModLoader.addBiome(???);
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14. package net.minecraft.src;
  15.  
  16. public class BiomeGen??? extends BiomeGenBase
  17. {
  18. protected BiomeGen???(int par1)
  19. {
  20. super(par1);
  21. this.theBiomeDecorator.treesPerChunk = -999;
  22. this.theBiomeDecorator.flowersPerChunk = 4;
  23. this.theBiomeDecorator.grassPerChunk = 10;
  24. fillerBlock =(byte)mod_???.???.blockID;
  25. topBlock =(byte)mod_???.???.blockID; //if u dont want your biome being mod out of your custom block //change blockmod_???.(blockname) to Block.(blockname)
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement