(svn r12556) -Fix (r6001): remove fences with fields when loading old savegames, looks better

This commit is contained in:
smatz 2008-04-03 23:52:43 +00:00
parent b9b99d3150
commit c745ca21a3
1 changed files with 5 additions and 0 deletions

View File

@ -1963,7 +1963,12 @@ bool AfterLoadGame()
for (TileIndex t = 0; t < map_size; t++) {
if (IsTileType(t, MP_CLEAR) && IsClearGround(t, CLEAR_FIELDS)) {
/* remove fields */
MakeClear(t, CLEAR_GRASS, 3);
} else if (IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES)) {
/* remove fences around fields */
SetFenceSE(t, 0);
SetFenceSW(t, 0);
}
}