summaryrefslogtreecommitdiff
path: root/src/terraform_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-11-16 14:17:49 +0000
committerrubidium <rubidium@openttd.org>2008-11-16 14:17:49 +0000
commitcdfa2d68b135618c8865caebaeb03910250b8bfa (patch)
tree12d252929ee68a0e7efa115413b4bb45a616aa5e /src/terraform_gui.cpp
parentffa3ec54f9047116495532c20b986f955cf13c4d (diff)
downloadopenttd-cdfa2d68b135618c8865caebaeb03910250b8bfa.tar.xz
(svn r14582) -Fix [FS#2392]: blank box on cost estimation of levelling a flat area.
-Fix: make levelling, raising and lowering of an area behave the same.
Diffstat (limited to 'src/terraform_gui.cpp')
-rw-r--r--src/terraform_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp
index 4fc09ad76..589dce191 100644
--- a/src/terraform_gui.cpp
+++ b/src/terraform_gui.cpp
@@ -123,7 +123,7 @@ bool GUIPlaceProcDragXY(ViewportDragDropSelectionProcess proc, TileIndex start_t
DoCommandP(end_tile, start_tile, (uint32)-1, CcTerraform, CMD_LEVEL_LAND | CMD_MSG(STR_0809_CAN_T_LOWER_LAND_HERE));
break;
case DDSP_LEVEL_AREA:
- DoCommandP(end_tile, start_tile, 0, CcPlaySound10, CMD_LEVEL_LAND);
+ DoCommandP(end_tile, start_tile, 0, CcPlaySound10, CMD_LEVEL_LAND | CMD_MSG(STR_CAN_T_LEVEL_LAND_HERE));
break;
case DDSP_CREATE_ROCKS:
GenerateRockyArea(end_tile, start_tile);