diff options
author | tron <tron@openttd.org> | 2007-01-31 21:42:58 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2007-01-31 21:42:58 +0000 |
commit | 43242302e01894c5aa5b6488537fcff75aa6a36d (patch) | |
tree | 2f9752ee03edef6000b7828c08c566226a0fed0a /src | |
parent | ce12ae7420515cc9cad636dadb500a1f32776b04 (diff) | |
download | openttd-43242302e01894c5aa5b6488537fcff75aa6a36d.tar.xz |
(svn r8499) -Fix
-Fix (?): When removing an oil rig replace the station tile by water, not bare land
Diffstat (limited to 'src')
-rw-r--r-- | src/station_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 0c2580612..28a61f1b6 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -2707,7 +2707,7 @@ void DeleteOilRig(TileIndex tile) { Station* st = GetStationByTile(tile); - DoClearSquare(tile); + MakeWater(tile); st->dock_tile = 0; st->airport_tile = 0; |