From 09a73b9955fd2e00616811737812748b576a7119 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sun, 8 May 2005 21:00:56 +0000 Subject: (svn r2284) - Fix (regression): [ 1197177 ] Scenario editor: desert add/remove tool removes industries. Fixed a bit too agressive desert generator. It still does remove the industry (sand's a bitch on machinery), but at least it does it cleanly :) --- terraform_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform_gui.c b/terraform_gui.c index df8acfe4a..10845c4d2 100644 --- a/terraform_gui.c +++ b/terraform_gui.c @@ -50,7 +50,7 @@ static void GenerateDesertArea(TileIndex end, TileIndex start) BEGIN_TILE_LOOP(tile, size_x, size_y, TILE_XY(sx, sy)) { if (GetTileType(tile) != MP_WATER) { SetMapExtraBits(tile, (_ctrl_pressed) ? 0 : 1); - DoClearSquare(tile); + DoCommandP(tile, 0, 0, NULL, CMD_LANDSCAPE_CLEAR); MarkTileDirtyByTile(tile); } } END_TILE_LOOP(tile, size_x, size_y, 0); -- cgit v1.2.3-54-g00ecf