Loading

Paste #pg4tog6je

  1. Index: src/water_cmd.cpp
  2. ===================================================================
  3. --- src/water_cmd.cpp   (revision 27194)
  4. +++ src/water_cmd.cpp   (working copy)
  5. @@ -419,6 +419,7 @@
  6.         if (IsTileType(tile, MP_WATER) && (!IsTileOwner(tile, OWNER_WATER) || wc == WATER_CLASS_SEA)) continue;
  7.  
  8.         bool water = IsWaterTile(tile);
  9. +       bool river = GetWaterClass(tile) == WATER_CLASS_RIVER;
  10.         ret = DoCommand(tile, 0, 0, flags | DC_FORCE_CLEAR_TILE, CMD_LANDSCAPE_CLEAR);
  11.         if (ret.Failed()) return ret;
  12.  
  13. @@ -442,6 +443,7 @@
  14.                     /* FALL THROUGH */
  15.  
  16.                 default:
  17. +                   if (river) SB(_me[tile].m6, 0, 0, 1);
  18.                     MakeCanal(tile, _current_company, Random());
  19.                     if (Company::IsValidID(_current_company)) {
  20.                         Company::Get(_current_company)->infrastructure.water++;

Comments