summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/abyss.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index edde4516bc..4ea7b502a9 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -908,13 +908,8 @@ static void _corrupt_level_features(const crawl_environment &oenv)
static bool _is_level_corrupted()
{
- if (you.level_type == LEVEL_ABYSS
- || you.level_type == LEVEL_PANDEMONIUM
- || player_in_hell()
- || player_in_branch(BRANCH_VESTIBULE_OF_HELL))
- {
+ if (you.level_type == LEVEL_ABYSS)
return (true);
- }
return (!!env.markers.find(MAT_CORRUPTION_NEXUS));
}