summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-12 22:00:42 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-12 22:01:12 -0800
commit91a0670e7038461929a8035c2aecb0df8d830291 (patch)
tree07fc37d0b406fff6df0930b8bdbfafa48bdd9957 /crawl-ref/source/dungeon.cc
parenta8933da0388ee42bc1172a903c022f045d6f3bd3 (diff)
downloadcrawl-ref-91a0670e7038461929a8035c2aecb0df8d830291.tar.gz
crawl-ref-91a0670e7038461929a8035c2aecb0df8d830291.zip
dungeon.cc: use specialized overflows only %50
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 401c53ab1d..294944dba5 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -1702,7 +1702,7 @@ static void _build_overflow_temples(int level_number)
// For a single-altar temple, first try to find a temple specialized
// for that god.
- if (num_gods == 1)
+ if (num_gods == 1 && coinflip())
{
CrawlVector &god_vec = temple[TEMPLE_GODS_KEY];
god_type god = (god_type) god_vec[0].get_byte();