File diff r27147:5d938ed2c7b5 → r27148:4e041ae27b9d
src/landscape.cpp
Show inline comments
 
@@ -18,12 +18,13 @@
 
#include "landscape.h"
 
#include "void_map.h"
 
#include "tgp.h"
 
#include "genworld.h"
 
#include "fios.h"
 
#include "date_func.h"
 
#include "timer/timer_game_calendar.h"
 
#include "water.h"
 
#include "effectvehicle_func.h"
 
#include "landscape_type.h"
 
#include "animated_tile_func.h"
 
#include "core/random_func.hpp"
 
#include "object_base.h"
 
@@ -608,13 +609,13 @@ void SetSnowLine(byte table[SNOW_LINE_MO
 
 */
 
byte GetSnowLine()
 
{
 
	if (_snow_line == nullptr) return _settings_game.game_creation.snow_line_height;
 

	
 
	YearMonthDay ymd;
 
	ConvertDateToYMD(_date, &ymd);
 
	ConvertDateToYMD(TimerGameCalendar::date, &ymd);
 
	return _snow_line->table[ymd.month][ymd.day];
 
}
 

	
 
/**
 
 * Get the highest possible snow line height, either variable or static.
 
 * @return the highest snow line height.