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