summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index f549179ac8..adf96aa5ff 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -2067,18 +2067,6 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
break;
// Utility spells.
- case SPELL_DETECT_CURSE:
- detect_curse(false);
- break;
-
- case SPELL_REMOVE_CURSE:
- remove_curse(false);
- break;
-
- case SPELL_IDENTIFY:
- identify(powc);
- break;
-
case SPELL_DETECT_SECRET_DOORS:
if (_can_cast_detect())
cast_detect_secret_doors(powc);
@@ -2120,16 +2108,6 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
break;
}
- case SPELL_MAGIC_MAPPING:
- if (you.level_type == LEVEL_PANDEMONIUM)
- mpr("Your Earth magic cannot map Pandemonium.");
- else
- {
- powc = stepdown_value( powc, 10, 10, 40, 45 );
- magic_mapping( 5 + powc, 50 + random2avg( powc * 2, 2 ), false );
- }
- break;
-
case SPELL_PROJECTED_NOISE:
project_noise();
break;