summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-10-05 18:42:59 +0000
committerfrosch <frosch@openttd.org>2008-10-05 18:42:59 +0000
commit13587560713762f461589f5e91e66cd0aaf8d364 (patch)
treeb3e5523c08005af6b307f9a83a52ce225ad3ebb8
parente17db9655c002228e96670428f5209fc41a7da47 (diff)
downloadopenttd-13587560713762f461589f5e91e66cd0aaf8d364.tar.xz
(svn r14442) -Fix (r14406): Typo causing problems in rare cases.
-rw-r--r--src/autoreplace_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/autoreplace_cmd.cpp b/src/autoreplace_cmd.cpp
index 98b327935..24ec80dbd 100644
--- a/src/autoreplace_cmd.cpp
+++ b/src/autoreplace_cmd.cpp
@@ -105,7 +105,7 @@ static void TransferCargo(Vehicle *old_veh, Vehicle *new_head, bool part_of_chai
/* 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;