From d9b9ac6013eccff386da96a3ef8b97912b994584 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 9 Dec 2011 20:48:13 +0000 Subject: (svn r23464) -Fix [FS#4876]: clear the backed up orders of a removed station as well, otherwise one could create orders to a station that was never in the original backupped orders. For example a road vehicle trying to go to a buoy. --- src/order_cmd.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/order_cmd.cpp') diff --git a/src/order_cmd.cpp b/src/order_cmd.cpp index ad84b582c..7b7fc8f57 100644 --- a/src/order_cmd.cpp +++ b/src/order_cmd.cpp @@ -27,6 +27,7 @@ #include "station_base.h" #include "waypoint_base.h" #include "company_base.h" +#include "order_backup.h" #include "table/strings.h" @@ -1705,6 +1706,8 @@ restart: } } } + + OrderBackup::RemoveOrder(type, destination); } /** -- cgit v1.2.3-54-g00ecf