summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rail_cmd.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rail_cmd.cpp b/src/rail_cmd.cpp
index 527e02cb8..162fe9779 100644
--- a/src/rail_cmd.cpp
+++ b/src/rail_cmd.cpp
@@ -1850,7 +1850,11 @@ static CommandCost ClearTile_Track(TileIndex tile, DoCommandFlag flags)
if (ret.Failed()) return ret;
/* The track was removed, and left a coast tile. Now also clear the water. */
- if (flags & DC_EXEC) DoClearSquare(tile);
+ if (flags & DC_EXEC) {
+ bool remove = IsDockingTile(tile);
+ DoClearSquare(tile);
+ if (remove) RemoveDockingTile(tile);
+ }
cost.AddCost(_price[PR_CLEAR_WATER]);
}