001    package net.minecraft.src;
002    
003    public class BiomeGenBeach extends BiomeGenBase
004    {
005        public BiomeGenBeach(int par1)
006        {
007            super(par1);
008            this.spawnableCreatureList.clear();
009            this.topBlock = (byte)Block.sand.blockID;
010            this.fillerBlock = (byte)Block.sand.blockID;
011            this.theBiomeDecorator.treesPerChunk = -999;
012            this.theBiomeDecorator.deadBushPerChunk = 0;
013            this.theBiomeDecorator.reedsPerChunk = 0;
014            this.theBiomeDecorator.cactiPerChunk = 0;
015        }
016    }