summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
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 );