1
0

Add enhanced Gold generation in Mesa-Type Biomes (#4821)

* added enhanced gold generation in mesa-type-biomes

* fixed typo in comment

* added enhanced gold generation in mesa biomes - fixed small checkstyle errors

Co-authored-by: 12xx12 <12xx12100@gmail.com>
This commit is contained in:
12xx12
2020-08-12 09:20:38 +02:00
committed by GitHub
parent 3986059866
commit 47f7727b7f
4 changed files with 65 additions and 0 deletions

View File

@@ -246,6 +246,30 @@ bool IsBiomeMountain(EMCSBiome a_Biome)
bool IsBiomeMesa(EMCSBiome a_Biome)
{
switch (a_Biome)
{
case biMesa:
case biMesaPlateauF:
case biMesaPlateau:
case biMesaBryce:
case biMesaPlateauFM:
case biMesaPlateauM:
{
return true;
}
default:
{
return false;
}
}
}
int GetSnowStartHeight(EMCSBiome a_Biome)
{
switch (a_Biome)