diff options
Diffstat (limited to 'src/saveload')
-rw-r--r-- | src/saveload/afterload.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/saveload/afterload.cpp b/src/saveload/afterload.cpp index c529a77ae..407972f7b 100644 --- a/src/saveload/afterload.cpp +++ b/src/saveload/afterload.cpp @@ -1944,6 +1944,14 @@ bool AfterLoadGame() } s->cargo_type = CT_INVALID; } + + Order *o; + FOR_ALL_ORDERS(o) { + /* Buoys are now go to waypoint orders */ + if (!o->IsType(OT_GOTO_STATION) || !Station::Get(o->GetDestination())->IsBuoy()) continue; + + o->MakeGoToWaypoint(o->GetDestination()); + } } AfterLoadLabelMaps(); |