Files
DimDoors/StevenDimDoors/mod_pocketDim/BiomeGenLimbo.java
2013-05-10 16:05:11 -04:00

23 lines
623 B
Java

package StevenDimDoors.mod_pocketDim;
import net.minecraft.world.biome.BiomeGenBase;
public class BiomeGenLimbo extends BiomeGenBase
{
protected BiomeGenLimbo(int par1)
{
super(par1);
this.theBiomeDecorator.treesPerChunk = 0;
this.theBiomeDecorator.flowersPerChunk = 0;
this.theBiomeDecorator.grassPerChunk = 0;
this.setBiomeName("Limbo");
this.setDisableRain();
this.spawnableMonsterList.clear();
this.spawnableCreatureList.clear();
this.spawnableWaterCreatureList.clear();
this.spawnableCaveCreatureList.clear();
}
}