summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-28 11:55:18 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-28 11:55:18 +0100
commit4c967be2141ad2b6a86395a48b7f02dfc94dff9d (patch)
tree18c831dc84555af0a9130d8faedbbf47cfd737b3 /crawl-ref/source/dungeon.cc
parent0f04bb79d74a1dd33c1fa3d7a1e903def81ac331 (diff)
downloadcrawl-ref-4c967be2141ad2b6a86395a48b7f02dfc94dff9d.tar.gz
crawl-ref-4c967be2141ad2b6a86395a48b7f02dfc94dff9d.zip
Place uniques with noclobber=false.
This should help with broken levels created by Yiuf's cottage. It may mean that we won't be seeing much of Yiuf anymore.
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index a5c0238d93..2b9e5cfd14 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -3595,7 +3595,7 @@ static int _place_uniques(int level_number, char level_type)
break;
}
- if (dgn_place_map(uniq_map, true, false))
+ if (dgn_place_map(uniq_map, false, false))
{
num_placed++;
#ifdef DEBUG_UNIQUE_PLACEMENT