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

23 lines
641 B
Java
Raw Normal View History

package biomesoplenty.biomes;
import net.minecraft.world.biome.BiomeGenBase;
public class BiomeGenPolar extends BiomeGenBase
{
2013-05-31 10:34:02 +00:00
private BiomeDecoratorBOP customBiomeDecorator;
public BiomeGenPolar(int par1)
2013-05-31 10:34:02 +00:00
{
super(par1);
spawnableCreatureList.clear();
theBiomeDecorator = new BiomeDecoratorBOP(this);
customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
customBiomeDecorator.treesPerChunk = -999;
customBiomeDecorator.flowersPerChunk = -999;
customBiomeDecorator.grassPerChunk = -999;
customBiomeDecorator.sandPerChunk = -999;
customBiomeDecorator.sandPerChunk2 = -999;
waterColorMultiplier = 3685739;
}
}