DimDoors/StevenDimDoors/mod_pocketDim/BiomeGenPocket.java

30 lines
1,007 B
Java
Raw Normal View History

package StevenDimDoors.mod_pocketDim;
2013-05-28 00:58:20 +02:00
import StevenDimDoors.mod_pocketDim.ticking.MobObelisk;
import net.minecraft.world.biome.BiomeGenBase;
2013-05-28 00:58:20 +02:00
import net.minecraft.world.biome.SpawnListEntry;
public class BiomeGenPocket extends BiomeGenBase
{
protected BiomeGenPocket(int par1)
{
super(par1);
this.theBiomeDecorator.treesPerChunk = 0;
this.theBiomeDecorator.flowersPerChunk = 0;
this.theBiomeDecorator.grassPerChunk = 0;
this.setBiomeName("Pocket Dimension");
this.setDisableRain();
this.spawnableMonsterList.clear();
this.spawnableCreatureList.clear();
this.spawnableWaterCreatureList.clear();
this.spawnableCaveCreatureList.clear();
2013-05-28 00:58:20 +02:00
this.spawnableMonsterList.add(new SpawnListEntry(MobObelisk.class, 1, 1, 1));
this.spawnableCreatureList.add(new SpawnListEntry(MobObelisk.class, 1, 1, 1));
this.spawnableCaveCreatureList.add(new SpawnListEntry(MobObelisk.class, 1, 1, 1));
}
}