(svn r15180) -Fix [FS#2560](r8498): old aircraft have to be updated after updating airport_type of oil rigs

This commit is contained in:
smatz 2009-01-20 23:43:19 +00:00
parent 5aa1171988
commit 90381d5d63
1 changed files with 4 additions and 0 deletions

View File

@ -588,6 +588,10 @@ bool AfterLoadGame()
}
}
/* In version 2.2 of the savegame, we have new airports, so status of all aircraft is reset.
* This has to be called after the oilrig airport_type update above ^^^ ! */
if (CheckSavegameVersionOldStyle(2, 2)) UpdateOldAircraft();
/* In version 6.1 we put the town index in the map-array. To do this, we need
* to use m2 (16bit big), so we need to clean m2, and that is where this is
* all about ;) */