From e122135c24d313a38e3a4830d5fed0c986aa21bd Mon Sep 17 00:00:00 2001 From: Darshan Shaligram Date: Sat, 2 Jan 2010 04:40:38 +0530 Subject: Allow Corruption to be used in Hells and Pan. --- crawl-ref/source/abyss.cc | 7 +------ 1 file changed, 1 insertion(+), 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)); } -- cgit v1.2.3-54-g00ecf