diff options
-rw-r--r-- | src/train_gui.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/train_gui.cpp b/src/train_gui.cpp index e463228d7..f302d759c 100644 --- a/src/train_gui.cpp +++ b/src/train_gui.cpp @@ -33,8 +33,7 @@ void CcBuildWagon(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p const Vehicle *found = NULL; const Train *t; FOR_ALL_TRAINS(t) { - if (t->IsFrontEngine() && t->tile == tile && - t->track == TRACK_BIT_DEPOT) { + if (t->IsFrontEngine() && t->tile == tile && t->IsStoppedInDepot()) { if (found != NULL) return; // must be exactly one. found = t; } |