2013-06-02 03:43:56 +02:00
|
|
|
package StevenDimDoors.mod_pocketDim.world;
|
2013-05-10 22:05:11 +02:00
|
|
|
|
2013-05-28 00:58:20 +02:00
|
|
|
import StevenDimDoors.mod_pocketDim.ticking.MobObelisk;
|
2013-05-10 22:05:11 +02:00
|
|
|
import net.minecraft.world.biome.BiomeGenBase;
|
2013-05-28 00:58:20 +02:00
|
|
|
import net.minecraft.world.biome.SpawnListEntry;
|
2013-05-10 22:05:11 +02:00
|
|
|
|
|
|
|
public class BiomeGenPocket extends BiomeGenBase
|
|
|
|
{
|
2013-06-02 03:43:56 +02:00
|
|
|
public BiomeGenPocket(int par1)
|
2013-05-10 22:05:11 +02:00
|
|
|
{
|
|
|
|
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-06-15 08:09:17 +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));
|
2013-05-28 00:58:20 +02:00
|
|
|
|
|
|
|
|
2013-05-10 22:05:11 +02:00
|
|
|
}
|
|
|
|
}
|