diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/landscape.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/landscape.cpp b/src/landscape.cpp index adc510253..18ae31207 100644 --- a/src/landscape.cpp +++ b/src/landscape.cpp @@ -1131,7 +1131,7 @@ static bool FlowRiver(bool *marks, TileIndex spring, TileIndex begin) if (found) { /* Flow further down hill. */ found = FlowRiver(marks, spring, end); - } else if (count > 10) { + } else if (count > 32) { /* Maybe we can make a lake. Find the Nth of the considered tiles. */ TileIndex lakeCenter = 0; for (int i = RandomRange(count - 1); i != 0; lakeCenter++) { |