Merge pull request #1956 from lawremi/mesadictfix
fix logic for guessing mesa tag in biome dict
This commit is contained in:
commit
240ed53a88
1 changed files with 4 additions and 4 deletions
|
@ -416,14 +416,14 @@ public class BiomeDictionary
|
|||
{
|
||||
BiomeDictionary.registerBiomeType(biome, SANDY);
|
||||
}
|
||||
else if (biome.topBlock == Blocks.hardened_clay)
|
||||
{
|
||||
BiomeDictionary.registerBiomeType(biome, MESA);
|
||||
}
|
||||
else if (biome.topBlock == Blocks.mycelium)
|
||||
{
|
||||
BiomeDictionary.registerBiomeType(biome, MUSHROOM);
|
||||
}
|
||||
if (biome.fillerBlock == Blocks.hardened_clay)
|
||||
{
|
||||
BiomeDictionary.registerBiomeType(biome, MESA);
|
||||
}
|
||||
}
|
||||
|
||||
//Internal implementation
|
||||
|
|
Loading…
Reference in a new issue