(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.
This commit is contained in:
rubidium
2008-11-16 14:17:49 +00:00
parent 9fdac4e1d0
commit c2ed9719b3
3 changed files with 6 additions and 3 deletions

View File

@@ -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);