summaryrefslogtreecommitdiff
path: root/src/train_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-07-08 22:11:55 +0000
committerrubidium <rubidium@openttd.org>2009-07-08 22:11:55 +0000
commit741a340b8b0fba9b3be951f99ce4f57ba2a21621 (patch)
tree9ce21cde69d3a284f36935c0f850a93a46aa8241 /src/train_cmd.cpp
parent16e207f78b98b237aa98bca033b550cb8954fb61 (diff)
downloadopenttd-741a340b8b0fba9b3be951f99ce4f57ba2a21621.tar.xz
(svn r16772) -Fix [FS#3019]: don't use the same error message for turning around road vehicles and flipping parts of trains in the depot
Diffstat (limited to 'src/train_cmd.cpp')
-rw-r--r--src/train_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp
index f13bc9865..835c69639 100644
--- a/src/train_cmd.cpp
+++ b/src/train_cmd.cpp
@@ -1977,7 +1977,7 @@ CommandCost CmdReverseTrainDirection(TileIndex tile, DoCommandFlag flags, uint32
/* turn a single unit around */
if (v->IsMultiheaded() || HasBit(EngInfo(v->engine_type)->callbackmask, CBM_VEHICLE_ARTIC_ENGINE)) {
- return_cmd_error(STR_ONLY_TURN_SINGLE_UNIT);
+ return_cmd_error(STR_ERROR_CAN_T_REVERSE_DIRECTION_RAIL_VEHICLE_MULTIPLE_UNITS);
}
Train *front = v->First();