summaryrefslogtreecommitdiff
path: root/rail_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-07-26 12:11:52 +0000
committertron <tron@openttd.org>2006-07-26 12:11:52 +0000
commit6c6494588ed8251e69f08a30af697aa0e089439c (patch)
tree7c68e6e500cc7e7675d09dc1312602789b43128f /rail_cmd.c
parentfbcdf3c24e3ce0f60cf484bfd402d5618c40a62c (diff)
downloadopenttd-6c6494588ed8251e69f08a30af697aa0e089439c.tar.xz
(svn r5618) Remove a redundant check, CheckTrackCombination() a few lines above performs the same test
Diffstat (limited to 'rail_cmd.c')
-rw-r--r--rail_cmd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/rail_cmd.c b/rail_cmd.c
index 8dc73c063..8909faf53 100644
--- a/rail_cmd.c
+++ b/rail_cmd.c
@@ -259,8 +259,7 @@ int32 CmdBuildSingleRail(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
!EnsureNoVehicle(tile)) {
return CMD_ERROR;
}
- if (GetRailTileType(tile) == RAIL_TILE_DEPOT_WAYPOINT ||
- !IsTileOwner(tile, _current_player) ||
+ if (!IsTileOwner(tile, _current_player) ||
GetRailType(tile) != p1) {
// Get detailed error message
return DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);