From e6819c4c65837e9e6592ea242dedf27820c70ea5 Mon Sep 17 00:00:00 2001 From: STRWarrior Date: Fri, 3 Apr 2015 16:32:31 +0200 Subject: Fixed the nether and end getting snow if they were generated in the overworld. --- src/BiomeDef.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/BiomeDef.cpp b/src/BiomeDef.cpp index 3e34ebdbe..a2a06f10c 100644 --- a/src/BiomeDef.cpp +++ b/src/BiomeDef.cpp @@ -338,6 +338,13 @@ int GetSnowStartHeight(EMCSBiome a_Biome) // These biomes don't actualy have any downfall. return 1000; } + + case biNether: + case biEnd: + { + // These shouldn't get any snow at all. + return 9999; + } default: { -- cgit v1.2.3