001    package net.minecraft.world.biome;
002    
003    public class BiomeGenPlains extends BiomeGenBase
004    {
005        protected BiomeGenPlains(int par1)
006        {
007            super(par1);
008            this.theBiomeDecorator.treesPerChunk = -999;
009            this.theBiomeDecorator.flowersPerChunk = 4;
010            this.theBiomeDecorator.grassPerChunk = 10;
011        }
012    }