Loading

Paste #pf0ccdkvi

  1. static CommandCost TerraformTile_Water(TileIndex tile, DoCommandFlag flags, int z_new, Slope tileh_new)
  2. {
  3.     /* Canals can't be terraformed */
  4.     if (IsWaterTile(tile) && IsCanal(tile)) return_cmd_error(STR_ERROR_MUST_DEMOLISH_CANAL_FIRST);
  5.  
  6.     /* Rivers can't be terraformed if the resulting formation is not flat or inclined */
  7.     if (IsWaterTile(tile) && IsRiver(tile)) {
  8.         if (!IsTileFlat(tileh_new) || !IsInclinedSlope(tileh_new)) {
  9.             return_cmd_error(STR_ERROR_LAND_SLOPED_IN_WRONG_DIRECTION);
  10.         }
  11.     }
  12.     return DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
  13. }

Comments