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

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
smatz 17 years ago
parent b9b99d3150
commit c745ca21a3

@ -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);
}
}

Loading…
Cancel
Save