From 0372cceb2f4d97fa9d1cee6b9d766db618162ff0 Mon Sep 17 00:00:00 2001 From: bjarni Date: Thu, 8 Jun 2006 20:17:19 +0000 Subject: [PATCH] (svn r5176) fixing the typo, that should have been fixed in last commit --- train_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train_cmd.c b/train_cmd.c index 773a4b55da..90b6cb2242 100644 --- a/train_cmd.c +++ b/train_cmd.c @@ -839,7 +839,7 @@ int CheckTrainStoppedInDepot(const Vehicle *v) for (; v != NULL; v = v->next) { /* This count is used by the depot code to determine the number of engines * in the consist. Exclude articulated parts so that autoreplacing to - * engines with more articulated parts that before works correctly. + * engines with more articulated parts than before works correctly. * * Also skip counting rear ends of multiheaded engines */ if (!IsArticulatedPart(v) && !(!IsTrainEngine(v) && IsMultiheaded(v))) count++;