From ff95e3edafcf41b2bf1abcabd7f6fc5cd9bb2672 Mon Sep 17 00:00:00 2001 From: frosch Date: Sat, 7 Jul 2012 15:37:29 +0000 Subject: [PATCH] (svn r24383) -Fix: a comment. --- src/roadveh_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roadveh_cmd.cpp b/src/roadveh_cmd.cpp index 1798e75a38..eed844dfe5 100644 --- a/src/roadveh_cmd.cpp +++ b/src/roadveh_cmd.cpp @@ -954,7 +954,7 @@ struct RoadDriveEntry { static bool RoadVehLeaveDepot(RoadVehicle *v, bool first) { - /* Don't leave if not all the wagons are in the depot. */ + /* Don't leave unless v and following wagons are in the depot. */ for (const RoadVehicle *u = v; u != NULL; u = u->Next()) { if (u->state != RVSB_IN_DEPOT || u->tile != v->tile) return false; }