summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/station_cmd.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index f83daf62d..9a9c4825f 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -3173,6 +3173,9 @@ static void ChangeTileOwner_Station(TileIndex tile, Owner old_owner, Owner new_o
*/
static bool CanRemoveRoadWithStop(TileIndex tile, DoCommandFlag flags)
{
+ /* Yeah... water can always remove stops, right? */
+ if (_current_company == OWNER_WATER) return true;
+
Owner road_owner = _current_company;
Owner tram_owner = _current_company;