changeset 5887:2f489a2c465a draft

(svn r8499) -Fix -Fix (?): When removing an oil rig replace the station tile by water, not bare land
author tron <tron@openttd.org>
date Wed, 31 Jan 2007 21:42:58 +0000
parents 28dcf755e961
children 11683122ef51
files src/station_cmd.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;