From 948ef6dc1b123c921bdd9fdbed768275e2c1f6dd Mon Sep 17 00:00:00 2001 From: truelight Date: Sat, 28 Apr 2007 22:23:10 +0000 Subject: (svn r9740) -Fix [FS#709]: removed wrong assert() that could be triggered by removing an order at the wrong moment --- src/roadveh_cmd.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/roadveh_cmd.cpp') diff --git a/src/roadveh_cmd.cpp b/src/roadveh_cmd.cpp index 79fa60847..3d7f220fa 100644 --- a/src/roadveh_cmd.cpp +++ b/src/roadveh_cmd.cpp @@ -1575,8 +1575,6 @@ again: TileIndex next_tile = TILE_ADD(v->tile, TileOffsByDir(v->direction)); RoadStop::Type type = IsCargoInClass(v->cargo_type, CC_PASSENGERS) ? RoadStop::BUS : RoadStop::TRUCK; - assert(HASBIT(v->u.road.state, RVS_IS_STOPPING)); - /* Check if next inline bay is free */ if (IsDriveThroughStopTile(next_tile) && (GetRoadStopType(next_tile) == type)) { RoadStop *rs_n = GetRoadStopByTile(next_tile, type); -- cgit v1.2.3-54-g00ecf