~ubuntu-branches/debian/squeeze/freeciv/squeeze

« back to all changes in this revision

Viewing changes to server/maphand.c

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams
  • Date: 2008-11-29 22:25:59 UTC
  • mfrom: (1.2.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20081129222559-6sqqdum8qnhykm4l
Tags: 2.1.8-1
* New upstream release.  closes: #495740.
* Disable GGZ support (can be re-enabled when ggz 1.0 is available).
* Change maintainer to Debian Games Team.

Show diffs side-by-side

added added

removed removed

Lines of Context:
207
207
**************************************************************************/
208
208
static bool is_terrain_ecologically_wet(struct tile *ptile)
209
209
{
210
 
  return (tile_has_special(ptile, S_RIVER)
211
 
          || is_ocean_near_tile(ptile)
212
 
          || is_special_near_tile(ptile, S_RIVER));
 
210
  return (is_ocean_near_tile(ptile)
 
211
          || is_special_near_tile(ptile, S_RIVER, TRUE));
213
212
}
214
213
 
215
214
/**************************************************************************
1250
1249
          } vision_layer_iterate_end;
1251
1250
        } whole_map_iterate_end;
1252
1251
 
 
1252
        /* Refresh cities in case new tiles were revealed from their area. */
 
1253
        check_city_workers(pplayer2);
 
1254
 
1253
1255
        /* squares that are not seen, but which pfrom may have more recent
1254
1256
           knowledge of */
1255
1257
        give_map_from_player_to_player(pplayer, pplayer2);