diff options
author | smatz <smatz@openttd.org> | 2008-02-13 16:49:25 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-02-13 16:49:25 +0000 |
commit | 480036254b7773352ea8e77ca03eb7ab7355e505 (patch) | |
tree | 4080083294d993345dbd4ebd75129b441ebefb65 | |
parent | 0d1e4237cfe109f6c81123d4e31284666ce3ad81 (diff) | |
download | openttd-480036254b7773352ea8e77ca03eb7ab7355e505.tar.xz |
(svn r12131) -Fix (r3374): with mammoth trains disabled, maximum train length was limited to 9
-rw-r--r-- | src/train_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp index 79ca20083..232c79e07 100644 --- a/src/train_cmd.cpp +++ b/src/train_cmd.cpp @@ -993,7 +993,7 @@ CommandCost CmdMoveRailVehicle(TileIndex tile, uint32 flags, uint32 p1, uint32 p if (HasBit(p2, 0) && src_head == dst_head) return CommandCost(); { - int max_len = _patches.mammoth_trains ? 100 : 9; + int max_len = _patches.mammoth_trains ? 100 : 10; /* check if all vehicles in the source train are stopped inside a depot. */ int src_len = CheckTrainStoppedInDepot(src_head); |