1
0

Fixed the nether and end getting snow if they were generated in the overworld.

This commit is contained in:
STRWarrior 2015-04-03 16:32:31 +02:00
parent afdd751fe3
commit e6819c4c65

View File

@ -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:
{