summaryrefslogtreecommitdiff
path: root/tree_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-14 18:55:10 +0000
committertron <tron@openttd.org>2005-02-14 18:55:10 +0000
commit1e2f9ba5a59da89c66ea07cfe674dcbccd0276c9 (patch)
treee308eddec4abea5b2c2159040c38cbae015fc785 /tree_cmd.c
parent066134aa0147d45984a7536d3dcf255094302fcc (diff)
downloadopenttd-1e2f9ba5a59da89c66ea07cfe674dcbccd0276c9.tar.xz
(svn r1874) Fix bug introduced in r1839 which placed snow covered trees below the snow line ([1121680])
Diffstat (limited to 'tree_cmd.c')
-rw-r--r--tree_cmd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tree_cmd.c b/tree_cmd.c
index 9e9bc6b1f..a29663d6f 100644
--- a/tree_cmd.c
+++ b/tree_cmd.c
@@ -50,8 +50,7 @@ static void PlaceTree(uint tile, uint32 r, byte m5_or)
_map3_hi[tile] = 0; // no hedge
// above snowline?
- if( (_opt.landscape == LT_HILLY) && (GetTileZ(tile) - _opt.snow_line > 0) )
- {
+ if (_opt.landscape == LT_HILLY && GetTileZ(tile) > _opt.snow_line) {
_map2[tile] = 0xE0; // set land type to snow
_map2[tile] |= (byte)(r >> 24)&0x07; // randomize counter
}