(svn r14559) -Fix [FS#2387]: A train could be blocked inside a depot if it was reversed just after leaving the depot.

This commit is contained in:
michi_cc
2008-11-02 19:32:24 +00:00
parent f649496caa
commit 808d9255a8
2 changed files with 4 additions and 4 deletions

View File

@@ -3654,10 +3654,6 @@ static void TrainController(Vehicle *v, Vehicle *nomove, bool update_image)
TrainEnterStation(v, r >> VETS_STATION_ID_OFFSET);
return;
}
if (v->Next() == NULL && IsRailDepotTile(v->tile) && HasBit(r, VETS_ENTERED_WORMHOLE)) {
SetDepotWaypointReservation(v->tile, false);
if (_settings_client.gui.show_track_reservation) MarkTileDirtyByTile(v->tile);
}
if (v->current_order.IsType(OT_LEAVESTATION)) {
v->current_order.Free();