@SuppressWarnings("unchecked")
 public BiomeGenTropics(int par1) {
   super(par1);
   theBiomeDecorator = new BiomeDecoratorBOP(this);
   customBiomeDecorator = (BiomeDecoratorBOP) theBiomeDecorator;
   customBiomeDecorator.treesPerChunk = 12;
   customBiomeDecorator.grassPerChunk = 7;
   customBiomeDecorator.wheatGrassPerChunk = 4;
   customBiomeDecorator.flowersPerChunk = 10;
   customBiomeDecorator.sandPerChunk = 50;
   customBiomeDecorator.sandPerChunk2 = 50;
   customBiomeDecorator.orangeFlowersPerChunk = 10;
   customBiomeDecorator.whiteFlowersPerChunk = 4;
   customBiomeDecorator.sunflowersPerChunk = 2;
   customBiomeDecorator.hibiscusPerChunk = 45;
   customBiomeDecorator.shrubsPerChunk = 4;
   customBiomeDecorator.generatePumpkins = false;
   spawnableMonsterList.add(new SpawnListEntry(EntityJungleSpider.class, 12, 6, 6));
   spawnableCreatureList.clear();
 }