summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/exercise.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2012-03-16 19:36:04 +0000
committerChris Campbell <chriscampbell89@gmail.com>2012-03-16 19:41:21 +0000
commit65a746cab8cf6abab7e0fe5da96d1b77d40de9b9 (patch)
treea9c91c8ed4f1af4fcc6875df63bcb2f506bac8b7 /crawl-ref/source/exercise.cc
parentf2178dc021e4300695b3fcfa553ce01d68ef412e (diff)
downloadcrawl-ref-65a746cab8cf6abab7e0fe5da96d1b77d40de9b9.tar.gz
crawl-ref-65a746cab8cf6abab7e0fe5da96d1b77d40de9b9.zip
Remove Nemelex's Mark Four ability
Triple Draw and Stack Five make it fairly redundant (and are more interesting/core abilities).
Diffstat (limited to 'crawl-ref/source/exercise.cc')
-rw-r--r--crawl-ref/source/exercise.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/crawl-ref/source/exercise.cc b/crawl-ref/source/exercise.cc
index 08bc8f20e4..7f01508a2b 100644
--- a/crawl-ref/source/exercise.cc
+++ b/crawl-ref/source/exercise.cc
@@ -32,7 +32,6 @@ skill_type abil_skill(ability_type abil)
case ABIL_NEMELEX_DRAW_ONE:
case ABIL_NEMELEX_PEEK_TWO:
case ABIL_NEMELEX_TRIPLE_DRAW:
- case ABIL_NEMELEX_MARK_FOUR:
case ABIL_NEMELEX_STACK_FIVE:
return (SK_EVOCATIONS);
@@ -108,8 +107,6 @@ static int _abil_degree(ability_type abil)
return (2 + random2(2));
case ABIL_NEMELEX_TRIPLE_DRAW:
return (3 + random2(3));
- case ABIL_NEMELEX_MARK_FOUR:
- return (4 + random2(4));
case ABIL_NEMELEX_STACK_FIVE:
return (5 + random2(5));