Merge pull request #1956 from lawremi/mesadictfix

fix logic for guessing mesa tag in biome dict
This commit is contained in:
LexManos 2015-06-19 11:25:49 -07:00
commit 240ed53a88

View file

@ -416,14 +416,14 @@ public class BiomeDictionary
{ {
BiomeDictionary.registerBiomeType(biome, SANDY); BiomeDictionary.registerBiomeType(biome, SANDY);
} }
else if (biome.topBlock == Blocks.hardened_clay)
{
BiomeDictionary.registerBiomeType(biome, MESA);
}
else if (biome.topBlock == Blocks.mycelium) else if (biome.topBlock == Blocks.mycelium)
{ {
BiomeDictionary.registerBiomeType(biome, MUSHROOM); BiomeDictionary.registerBiomeType(biome, MUSHROOM);
} }
if (biome.fillerBlock == Blocks.hardened_clay)
{
BiomeDictionary.registerBiomeType(biome, MESA);
}
} }
//Internal implementation //Internal implementation