diff options
Diffstat (limited to 'src/oldloader.cpp')
-rw-r--r-- | src/oldloader.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/oldloader.cpp b/src/oldloader.cpp index 49482bb6d..67fa7742d 100644 --- a/src/oldloader.cpp +++ b/src/oldloader.cpp @@ -1347,13 +1347,7 @@ static const OldChunks engine_chunk[] = { static bool LoadOldEngine(LoadgameState *ls, int num) { Engine *e = GetTempDataEngine(num); - if (!LoadChunk(ls, e, engine_chunk)) return false; - - /* Make sure wagons are marked as do-not-age */ - if ((num >= 27 && num < 54) || (num >= 57 && num < 84) || (num >= 89 && num < 116)) - e->age = 0xFFFF; - - return true; + return LoadChunk(ls, e, engine_chunk); } static bool LoadOldEngineName(LoadgameState *ls, int num) |