Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package ilexiconn.cookie.biome;
- import ilexiconn.cookie.blocks.blocks;
- import net.minecraft.world.biome.BiomeGenBase;
- import net.minecraft.world.biome.SpawnListEntry;
- public class cookieBiome extends BiomeGenBase
- {
- public cookieBiome(int par1)
- {
- super(par1);
- this.minHeight = 0.1F;
- this.maxHeight = 99.9F;
- this.spawnableMonsterList.clear();
- this.spawnableCreatureList.clear();
- this.spawnableWaterCreatureList.clear();
- this.spawnableCaveCreatureList.clear();
- this.topBlock = ((byte)blocks.cookieGrass.blockID);
- this.fillerBlock = ((byte)blocks.cookieDirt.blockID);
- this.setBiomeName("COOKIESSSSS");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement