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.spawnableMonsterList.add(new SpawnListEntry(EntityEnderman.class, 10, 4, 4)); 015 this.topBlock = (byte)Block.dirt.blockID; 016 this.fillerBlock = (byte)Block.dirt.blockID; 017 this.theBiomeDecorator = new BiomeEndDecorator(this); 018 } 019 020 @SideOnly(Side.CLIENT) 021 022 /** 023 * takes temperature, returns color 024 */ 025 public int getSkyColorByTemp(float par1) 026 { 027 return 0; 028 } 029 }