# HG changeset patch # User tron # Date 1170279778 0 # Node ID 2f489a2c465aac38e2a2ebcd5350255e219a1a24 # Parent 28dcf755e961aa4405910dd1afef49975089d1ef (svn r8499) -Fix -Fix (?): When removing an oil rig replace the station tile by water, not bare land diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -2707,7 +2707,7 @@ { Station* st = GetStationByTile(tile); - DoClearSquare(tile); + MakeWater(tile); st->dock_tile = 0; st->airport_tile = 0;