(svn r9072) -Codechange: [Orders] added methods to orders to free them and check if they are in use

This commit is contained in:
bjarni
2007-03-08 21:39:34 +00:00
parent daeac3d310
commit c2b7d0192d
9 changed files with 46 additions and 55 deletions

View File

@@ -682,8 +682,7 @@ static void ProcessRoadVehOrder(Vehicle *v)
order = GetVehicleOrder(v, v->cur_order_index);
if (order == NULL) {
v->current_order.type = OT_NOTHING;
v->current_order.flags = 0;
v->current_order.Free();
v->dest_tile = 0;
ClearSlot(v);
return;
@@ -1618,8 +1617,7 @@ again:
v->cur_speed = 0;
return;
}
v->current_order.type = OT_NOTHING;
v->current_order.flags = 0;
v->current_order.Free();
ClearSlot(v);
}