diff options
Diffstat (limited to 'ttd.c')
-rw-r--r-- | ttd.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1345,6 +1345,13 @@ bool AfterLoadGame(uint version) } END_TILE_LOOP(tile, MapSizeX(), MapSizeY(), 0); } + if (version < 0x900) { + Town *t; + FOR_ALL_TOWNS(t) { + UpdateTownMaxPass(t); + } + } + return true; } |