001 package net.minecraft.world.biome; 002 003 import cpw.mods.fml.relauncher.Side; 004 import cpw.mods.fml.relauncher.SideOnly; 005 import net.minecraft.block.Block; 006 import net.minecraft.entity.monster.EntityEnderman; 007 008 public class BiomeGenEnd extends BiomeGenBase 009 { 010 public BiomeGenEnd(int par1) 011 { 012 super(par1); 013 this.spawnableMonsterList.clear(); 014 this.spawnableCreatureList.clear(); 015 this.spawnableWaterCreatureList.clear(); 016 this.field_82914_M.clear(); 017 this.spawnableMonsterList.add(new SpawnListEntry(EntityEnderman.class, 10, 4, 4)); 018 this.topBlock = (byte)Block.dirt.blockID; 019 this.fillerBlock = (byte)Block.dirt.blockID; 020 this.theBiomeDecorator = new BiomeEndDecorator(this); 021 } 022 023 @SideOnly(Side.CLIENT) 024 025 /** 026 * takes temperature, returns color 027 */ 028 public int getSkyColorByTemp(float par1) 029 { 030 return 0; 031 } 032 }