Fixed mushroom island generation

This commit is contained in:
Adubbz 2014-05-24 12:12:45 +10:00
parent 4df6ad4d3a
commit 84f14c8ebd

View file

@ -110,6 +110,10 @@ public class GenLayerBiomeBOP extends GenLayerBiome
{
outputBiomeIDs[j1 + i1 * width] = getBiomeIdFromList(3);
}
else if (BOPConfigurationBiomeGen.mushroomIslandGen)
{
outputBiomeIDs[j1 + i1 * width] = BiomeGenBase.mushroomIsland.biomeID;
}
else
{
outputBiomeIDs[j1 + i1 * width] = getBiomeIdFromMixedList();