(svn r18728) -Fix: don't mark all tiles dirty in the artic tileloop

pull/155/head
yexo 15 years ago
parent 5c58bce129
commit 0de753ee07

@ -177,7 +177,8 @@ static void TileLoopClearAlps(TileIndex tile)
AddClearDensity(tile, -1);
} else {
/* Density at the required level. */
if (k < 0) ClearSnow(tile);
if (k >= 0) return;
ClearSnow(tile);
}
MarkTileDirtyByTile(tile);
}

Loading…
Cancel
Save