001 package net.minecraft.src; 002 003 public class BiomeGenMushroomIsland extends BiomeGenBase 004 { 005 public BiomeGenMushroomIsland(int par1) 006 { 007 super(par1); 008 this.theBiomeDecorator.treesPerChunk = -100; 009 this.theBiomeDecorator.flowersPerChunk = -100; 010 this.theBiomeDecorator.grassPerChunk = -100; 011 this.theBiomeDecorator.mushroomsPerChunk = 1; 012 this.theBiomeDecorator.bigMushroomsPerChunk = 1; 013 this.topBlock = (byte)Block.mycelium.blockID; 014 this.spawnableMonsterList.clear(); 015 this.spawnableCreatureList.clear(); 016 this.spawnableWaterCreatureList.clear(); 017 this.spawnableCreatureList.add(new SpawnListEntry(EntityMooshroom.class, 8, 4, 8)); 018 } 019 }