(svn r11058) -Fix[FS#1216]: GetTerrainType was a bit too relax with snow line.

After double checking with ttdpatch, behaviour is now more alike (Eddi)
This commit is contained in:
belugas 2007-09-08 00:37:37 +00:00
parent 4eef590b15
commit 8141fe0898
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ uint32 GetTerrainType(TileIndex tile)
{
switch (_opt.landscape) {
case LT_TROPIC: return GetTropicZone(tile) == TROPICZONE_DESERT ? 1 : 2;
case LT_ARCTIC: return GetTileZ(tile) >= GetSnowLine() ? 4 : 0;
case LT_ARCTIC: return GetTileZ(tile) > GetSnowLine() ? 4 : 0;
default: return 0;
}
}