diff options
author | frosch <frosch@openttd.org> | 2008-09-28 15:07:03 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2008-09-28 15:07:03 +0000 |
commit | 1032dbe1424e5bad1bc294b60dea91b737480613 (patch) | |
tree | 35ed672fd82dce19958d0d45402bac6699365441 /src | |
parent | e635df8d5347c99603af5ccb6ef3dced8f78a93b (diff) | |
download | openttd-1032dbe1424e5bad1bc294b60dea91b737480613.tar.xz |
(svn r14411) -Fix (r14406): IsFrontEngine() is only valid for trains.
Diffstat (limited to 'src')
-rw-r--r-- | src/autoreplace_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/autoreplace_cmd.cpp b/src/autoreplace_cmd.cpp index 0cafcaf1d..f162f0d3f 100644 --- a/src/autoreplace_cmd.cpp +++ b/src/autoreplace_cmd.cpp @@ -93,7 +93,7 @@ bool CheckAutoreplaceValidity(EngineID from, EngineID to, PlayerID player) */ static void TransferCargo(Vehicle *old_veh, Vehicle *new_head, bool part_of_chain) { - assert(!part_of_chain || IsFrontEngine(new_head)); + assert(!part_of_chain || new_head->IsPrimaryVehicle()); /* Loop through source parts */ for (Vehicle *src = old_veh; src != NULL; src = src->Next()) { if (!part_of_chain && src->type == VEH_TRAIN && src != old_veh && src != old_veh->u.rail.other_multiheaded_part && !IsArticulatedPart(src)) { |