summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2009-12-31 03:15:32 -0800
committerStefan O'Rear <stefanor@cox.net>2009-12-31 03:15:40 -0800
commit17d55a7806b3c9106b3f922021ef8302e94f3004 (patch)
treed798e1ae733eef1bcfe753c656bdb49fd77aba5c /crawl-ref/source/dungeon.cc
parent721260a4ac6e8276148ee1065d98654d3043fb21 (diff)
downloadcrawl-ref-17d55a7806b3c9106b3f922021ef8302e94f3004.tar.gz
crawl-ref-17d55a7806b3c9106b3f922021ef8302e94f3004.zip
Make 100% of Cocytus fish undead. (dshaligram)
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 84c00f70d5..d432d479ae 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -3370,7 +3370,6 @@ static int _place_monster_vector(std::vector<monster_type> montypes,
mg.cls = montypes[random2(montypes.size())];
if (player_in_branch( BRANCH_COCYTUS ) &&
- x_chance_in_y(95, 100) &&
mons_class_can_be_zombified(mg.cls))
{
static const monster_type lut[3][2] =
@@ -3453,8 +3452,7 @@ static void _place_aquatic_monsters(int level_number, char level_type)
else if (player_in_branch( BRANCH_COCYTUS ))
{
// Eels are useless when zombified
- if (swimming_things[i] == MONS_ELECTRIC_EEL &&
- !one_chance_in(20))
+ if (swimming_things[i] == MONS_ELECTRIC_EEL)
{
swimming_things[i] = one_chance_in(4) ? MONS_KRAKEN :
MONS_WATER_ELEMENTAL;