From d275109e79c191dde34b71f07e5a39cfeb11fba7 Mon Sep 17 00:00:00 2001 From: truelight Date: Sat, 15 Jan 2005 19:06:22 +0000 Subject: (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic. -Codechange: renamed all 'schedule' stuff to 'order(list)' -Codechange: moved all order-stuff to order_cmd.c / order.h -Codechange: vehicles that share orders are now linked to eachother with next_shared/prev_shared in Vehicle Developers: please use AssignOrder to assign data to an order. If not, you _WILL_ make the save-routine to assert! --- rail_cmd.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'rail_cmd.c') diff --git a/rail_cmd.c b/rail_cmd.c index d75404e69..5e42ced3a 100644 --- a/rail_cmd.c +++ b/rail_cmd.c @@ -768,10 +768,11 @@ static void DoDeleteWaypoint(Waypoint *cp) { Order order; cp->xy = 0; + order.type = OT_GOTO_WAYPOINT; - order.flags = 0; order.station = cp - _waypoints; - DeleteCommandFromVehicleSchedule(order); + DeleteDestinationFromVehicleOrder(order); + if (~cp->town_or_string & 0xC000) DeleteName(cp->town_or_string); RedrawWaypointSign(cp); } -- cgit v1.2.3-54-g00ecf