diff options
Diffstat (limited to 'src/Defines.h')
-rw-r--r-- | src/Defines.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/Defines.h b/src/Defines.h index 9bbe1055d..cc04d8026 100644 --- a/src/Defines.h +++ b/src/Defines.h @@ -563,34 +563,6 @@ namespace ItemCategory } } - - - - -/// Returns true if the biome has no downfall - deserts and savannas -inline bool IsBiomeNoDownfall(EMCSBiome a_Biome) -{ - switch (a_Biome) - { - case biDesert: - case biDesertHills: - case biDesertM: - case biSavanna: - case biSavannaM: - case biSavannaPlateau: - case biSavannaPlateauM: - case biNether: - case biEnd: - { - return true; - } - default: - { - return false; - } - } -} - // tolua_end |