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