summaryrefslogtreecommitdiff
path: root/src/rail_cmd.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-03-05 21:34:12 +0000
committeralberth <alberth@openttd.org>2010-03-05 21:34:12 +0000
commit71d28afe67af5635dfdd7b7af544e494a1d60a7b (patch)
tree8eb2d1de1e6453e7dea3ea58644dcd29f9539d4c /src/rail_cmd.cpp
parentc395b93acd69106df6005e66264d9114e0198440 (diff)
downloadopenttd-71d28afe67af5635dfdd7b7af544e494a1d60a7b.tar.xz
(svn r19320) -Fix (r19291): Forgot to set error message.
Diffstat (limited to 'src/rail_cmd.cpp')
-rw-r--r--src/rail_cmd.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/rail_cmd.cpp b/src/rail_cmd.cpp
index eb29fef07..c989c10fc 100644
--- a/src/rail_cmd.cpp
+++ b/src/rail_cmd.cpp
@@ -1478,8 +1478,11 @@ CommandCost CmdConvertRail(TileIndex tile, DoCommandFlag flags, uint32 p1, uint3
TileY(endtile) >= sy && TileY(endtile) <= ey) continue;
/* When not coverting rail <-> el. rail, any vehicle cannot be in tunnel/bridge */
- if (!IsCompatibleRail(GetRailType(tile), totype) &&
- TunnelBridgeIsFree(tile, endtile).Failed()) continue;
+ if (!IsCompatibleRail(GetRailType(tile), totype)) {
+ CommandCost ret = TunnelBridgeIsFree(tile, endtile);
+ ret.SetGlobalErrorMessage();
+ if (ret.Failed()) continue;
+ }
if (flags & DC_EXEC) {
Track track = DiagDirToDiagTrack(GetTunnelBridgeDirection(tile));