Changeset - r16626:dc6b3aa56bbb
[Not reviewed]
master
0 1 0
frosch - 13 years ago 2010-12-01 21:35:18
frosch@openttd.org
(svn r21367) -Fix (r18719)[FS#4283]: Fields were not cleared under snow though they were intended to be.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/clear_map.h
Show inline comments
 
@@ -316,7 +316,7 @@ static inline void MakeSnow(TileIndex t,
 
{
 
	assert(GetClearGround(t) != CLEAR_SNOW);
 
	SetBit(_m[t].m3, 4);
 
	if (GetClearGround(t) == CLEAR_FIELDS) {
 
	if (GetRawClearGround(t) == CLEAR_FIELDS) {
 
		SetClearGroundDensity(t, CLEAR_GRASS, density);
 
	} else {
 
		SetClearDensity(t, density);
0 comments (0 inline, 0 general)