Advertisement
Guest User

cookieBiome.java

a guest
Nov 23rd, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.63 KB | None | 0 0
  1. package ilexiconn.cookie.biome;
  2.  
  3. import ilexiconn.cookie.blocks.blocks;
  4. import net.minecraft.world.biome.BiomeGenBase;
  5. import net.minecraft.world.biome.SpawnListEntry;
  6.  
  7. public class cookieBiome extends BiomeGenBase
  8. {
  9.     public cookieBiome(int par1)
  10.     {
  11.         super(par1);
  12.         this.minHeight = 0.1F;
  13.         this.maxHeight = 99.9F;
  14.         this.spawnableMonsterList.clear();
  15.         this.spawnableCreatureList.clear();
  16.         this.spawnableWaterCreatureList.clear();
  17.         this.spawnableCaveCreatureList.clear();
  18.         this.topBlock = ((byte)blocks.cookieGrass.blockID);
  19.         this.fillerBlock = ((byte)blocks.cookieDirt.blockID);
  20.         this.setBiomeName("COOKIESSSSS");
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement