Jump to content

Recommended Posts

Posted

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.