diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/roadveh_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roadveh_cmd.cpp b/src/roadveh_cmd.cpp index 1798e75a3..eed844dfe 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; } |