From 94db6aa1a2849167ba5100a5f3d6393007ec988b Mon Sep 17 00:00:00 2001 From: maedhros Date: Tue, 20 Mar 2007 13:47:00 +0000 Subject: (svn r9371) -Feature: Add support for variable snow lines in the arctic climate, supplied by newgrf files. When this is enabled forests cannot be built below the highest snow line, and farms can't be built above it. Houses still use the _opt.snow_line so they are all consistent, so to make them respect the snowline you may want to use some newhouses features as well. --- src/newgrf_house.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/newgrf_house.cpp') diff --git a/src/newgrf_house.cpp b/src/newgrf_house.cpp index 707825341..888b5764f 100644 --- a/src/newgrf_house.cpp +++ b/src/newgrf_house.cpp @@ -8,6 +8,7 @@ #include "variables.h" #include "debug.h" #include "viewport.h" +#include "landscape.h" #include "date.h" #include "town.h" #include "town_map.h" @@ -252,7 +253,7 @@ static uint32 GetTerrainType(TileIndex tile) { switch (_opt.landscape) { case LT_DESERT: return GetTropicZone(tile) == TROPICZONE_DESERT ? 1 : 2; - case LT_HILLY: return GetTileZ(tile) >= _opt.snow_line ? 4 : 0; + case LT_HILLY: return GetTileZ(tile) >= GetSnowLine() ? 4 : 0; default: return 0; } } -- cgit v1.2.3-54-g00ecf