summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-29 20:42:33 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-29 20:42:33 +0000
commit335bc1e39a376c5964b2bbe06d92876d7f5292c2 (patch)
tree557cf2cfe5f938f45130bd2b3125c693d905ad22 /crawl-ref/source/dungeon.cc
parent5158a056d86e67830f501adfab9fe3cd82e0e3bb (diff)
downloadcrawl-ref-335bc1e39a376c5964b2bbe06d92876d7f5292c2.tar.gz
crawl-ref-335bc1e39a376c5964b2bbe06d92876d7f5292c2.zip
No water monsters in the Crypt (David.)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1398 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 81402b0549..9bdc1021ec 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -2027,10 +2027,10 @@ static void builder_monsters(int level_number, char level_type, int mon_wanted)
no_monster_zones );
place_uniques(level_number, level_type);
- place_aquatic_monsters(level_number, level_type);
- // Special handling
- if (player_in_branch( BRANCH_CRYPT ))
+ if ( !player_in_branch(BRANCH_CRYPT) ) // no water creatures in the Crypt
+ place_aquatic_monsters(level_number, level_type);
+ else
{
if (one_chance_in(3))
mons_place( MONS_CURSE_SKULL, BEH_SLEEP, MHITNOT, false, 0, 0 );