Posted February 12, 201312 yr i have a custom biome for my dimension but i dont know how to get it so it doesnt spawn in the over world here is the biomes code : package minecrafttale; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; import net.minecraft.block.Block; import net.minecraft.entity.monster.EntityGhast; import net.minecraft.world.biome.BiomeEndDecorator; import net.minecraft.world.biome.BiomeGenBase; import net.minecraft.world.biome.SpawnListEntry; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.event.terraingen.BiomeEvent; public class valhallaBiome extends BiomeGenBase{ public valhallaBiome(int id){ super(id); this.minHeight = 60; this.maxHeight = 232; this.waterColorMultiplier = 0xED0202; this.spawnableMonsterList.add(new SpawnListEntry(EntityViking1.class, 2,1,1)); this.spawnableWaterCreatureList.clear(); this.field_82914_M.clear(); this.spawnableCreatureList.clear(); this.spawnableMonsterList.clear(); this.topBlock = (byte)mod_MainClass.valhallaTop.blockID; this.fillerBlock = (byte)mod_MainClass.valhallaFill.blockID; } } My youtube channel for forge tutorials: http://www.youtube.com/user/TheGrovesyProject101?feature=mhee if i helped please press thank you
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.