diff options
author | Mattes D <github@xoft.cz> | 2014-01-11 21:20:41 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-01-11 21:20:41 +0100 |
commit | 498fb5b675c48813a98e3fec8cd1d819a49eadd9 (patch) | |
tree | 54572f19fe2c4240cee14ec564b8830a8cabd9ac /src/Defines.h | |
parent | Removed unused variables. (diff) | |
parent | Globals.h needs to be first include (diff) | |
download | cuberite-498fb5b675c48813a98e3fec8cd1d819a49eadd9.tar cuberite-498fb5b675c48813a98e3fec8cd1d819a49eadd9.tar.gz cuberite-498fb5b675c48813a98e3fec8cd1d819a49eadd9.tar.bz2 cuberite-498fb5b675c48813a98e3fec8cd1d819a49eadd9.tar.lz cuberite-498fb5b675c48813a98e3fec8cd1d819a49eadd9.tar.xz cuberite-498fb5b675c48813a98e3fec8cd1d819a49eadd9.tar.zst cuberite-498fb5b675c48813a98e3fec8cd1d819a49eadd9.zip |
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 534802d55..c75effa44 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 |