3ce380ad5e
Added code so that the links for Unstable Doors are handled properly by DDTeleporter. Hurray! Also cleaned up some unused imports in the BiomeGen classes and removed the RANDOM_DUNGEON link type - it was meant for the dd-rift command but there is no need for it anymore.
27 lines
910 B
Java
27 lines
910 B
Java
package StevenDimDoors.mod_pocketDim.world;
|
|
|
|
import net.minecraft.world.biome.BiomeGenBase;
|
|
|
|
public class BiomeGenPocket extends BiomeGenBase
|
|
{
|
|
public 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();
|
|
// 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));
|
|
|
|
|
|
}
|
|
}
|