package biomesoplenty.biomes; import net.minecraft.world.biome.BiomeGenBase; import biomesoplenty.api.Blocks; public class BiomeGenGlacier extends BiomeGenBase { private BiomeDecoratorBOP customBiomeDecorator; public BiomeGenGlacier(int par1) { super(par1); this.spawnableCreatureList.clear(); this.topBlock = (byte)Blocks.hardIce.get().blockID; this.fillerBlock = (byte)Blocks.hardIce.get().blockID; this.theBiomeDecorator = new BiomeDecoratorBOP(this); this.customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator; this.customBiomeDecorator.treesPerChunk = -999; this.customBiomeDecorator.flowersPerChunk = -999; this.customBiomeDecorator.grassPerChunk = -999; this.customBiomeDecorator.sandPerChunk = -999; this.customBiomeDecorator.sandPerChunk2 = -999; } }