diff options
author | rubidium <rubidium@openttd.org> | 2008-12-30 15:32:46 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-12-30 15:32:46 +0000 |
commit | 5410c52c1eccebc0531d5449a46475c6f5cd5e99 (patch) | |
tree | b3df120686b86ef319abeebe3c8230e4a69747a1 /src/terraform_gui.cpp | |
parent | 2fb24a8a83448220402d01d06f234706bc2b6cde (diff) | |
download | openttd-5410c52c1eccebc0531d5449a46475c6f5cd5e99.tar.xz |
(svn r14774) -Change: show which tile caused the "error" when leveling land like raising and lowering does and use the same sound.
Diffstat (limited to 'src/terraform_gui.cpp')
-rw-r--r-- | src/terraform_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp index 0094487b3..3aa8e38d3 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, CMD_LEVEL_LAND | CMD_MSG(STR_0809_CAN_T_LOWER_LAND_HERE), CcTerraform); break; case DDSP_LEVEL_AREA: - DoCommandP(end_tile, start_tile, 0, CMD_LEVEL_LAND | CMD_MSG(STR_CAN_T_LEVEL_LAND_HERE), CcPlaySound10); + DoCommandP(end_tile, start_tile, 0, CMD_LEVEL_LAND | CMD_MSG(STR_CAN_T_LEVEL_LAND_HERE), CcTerraform); break; case DDSP_CREATE_ROCKS: GenerateRockyArea(end_tile, start_tile); |