summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-09-08 00:37:37 +0000
committerbelugas <belugas@openttd.org>2007-09-08 00:37:37 +0000
commit20a3b3796321a3b18a2cf6a270e63310ee185f51 (patch)
tree5fd7f84d1f1cf621befce137e3b39e54392e1adc /src
parent704844ed432a6096369de9e11ed54895c4ce1787 (diff)
downloadopenttd-20a3b3796321a3b18a2cf6a270e63310ee185f51.tar.xz
(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)
Diffstat (limited to 'src')
-rw-r--r--src/newgrf_commons.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_commons.cpp b/src/newgrf_commons.cpp
index 5d6aa6630..6ffd879e0 100644
--- a/src/newgrf_commons.cpp
+++ b/src/newgrf_commons.cpp
@@ -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;
}
}