BiomesOPlenty/src/minecraft/biomesoplenty/biomes/BiomeGenBeachGravel.java

20 lines
611 B
Java
Raw Normal View History

2013-05-24 15:45:47 +00:00
package biomesoplenty.biomes;
import net.minecraft.block.Block;
import net.minecraft.world.biome.BiomeGenBase;
public class BiomeGenBeachGravel extends BiomeGenBase
{
public BiomeGenBeachGravel(int par1)
{
super(par1);
this.spawnableCreatureList.clear();
this.topBlock = (byte)Block.gravel.blockID;
this.fillerBlock = (byte)Block.gravel.blockID;
this.theBiomeDecorator.treesPerChunk = -999;
this.theBiomeDecorator.deadBushPerChunk = -999;
this.theBiomeDecorator.reedsPerChunk = -999;
this.theBiomeDecorator.cactiPerChunk = -999;
}
}