(svn r14442) -Fix (r14406): Typo causing problems in rare cases.
--- a/src/autoreplace_cmd.cpp Sun Oct 05 17:45:33 2008 +0000
+++ b/src/autoreplace_cmd.cpp Sun Oct 05 18:42:59 2008 +0000
@@ -105,7 +105,7 @@
/* Find free space in the new chain */
for (Vehicle *dest = new_head; dest != NULL && src->cargo.Count() > 0; dest = dest->Next()) {
- if (!part_of_chain && dest->type == VEH_TRAIN && dest != new_head && dest != new_head->u.rail.other_multiheaded_part && !IsArticulatedPart(src)) {
+ if (!part_of_chain && dest->type == VEH_TRAIN && dest != new_head && dest != new_head->u.rail.other_multiheaded_part && !IsArticulatedPart(dest)) {
/* Skip vehicles, which do not belong to new_head */
dest = GetLastEnginePart(dest);
continue;