| 116 | |
| 117 | |
| 118 | bool IsBiomeNoDownfall(EMCSBiome a_Biome) |
| 119 | { |
| 120 | switch (a_Biome) |
| 121 | { |
| 122 | case biDesert: |
| 123 | case biDesertHills: |
| 124 | case biDesertM: |
| 125 | case biSavanna: |
| 126 | case biSavannaM: |
| 127 | case biSavannaPlateau: |
| 128 | case biSavannaPlateauM: |
| 129 | case biNether: |
| 130 | case biEnd: |
| 131 | { |
| 132 | return true; |
| 133 | } |
| 134 | default: |
| 135 | { |
| 136 | return false; |
| 137 | } |
| 138 | } |
| 139 | } |