(svn r15654) -Fix: Only ever call any vehicle callbacks after the whole articulated engine has been built. (except 0x16)

This commit is contained in:
frosch
2009-03-09 18:56:50 +00:00
parent db05dbc70a
commit cfea2d428b
2 changed files with 4 additions and 3 deletions

View File

@@ -307,7 +307,7 @@ void AddArticulatedParts(Vehicle **vl, VehicleType type)
u = new (u) RoadVehicle();
previous->SetNext(u);
u->u.road.first_engine = v->engine_type;
u->u.road.cached_veh_length = GetRoadVehLength(u);
u->u.road.cached_veh_length = 8; // Callback is called when the consist is finished
u->u.road.state = RVSB_IN_DEPOT;
u->u.road.roadtype = v->u.road.roadtype;