summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-11-15 01:21:31 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-11-15 04:06:00 +0100
commit79c3d7c39771724248d7f06bc206c33d6517225a (patch)
treee84dc5e4f910f6ffd30252889cf04aa236361409 /crawl-ref/source/newgame.cc
parent15ce950565d02380b0440fc8cadc78f71cb73a2e (diff)
downloadcrawl-ref-79c3d7c39771724248d7f06bc206c33d6517225a.tar.gz
crawl-ref-79c3d7c39771724248d7f06bc206c33d6517225a.zip
Remove the Divinations school.
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 2a2cd4c8a2..d4764557a3 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -2373,7 +2373,7 @@ static void _give_wanderer_spell(skill_type skill)
spell_type spell = SPELL_NO_SPELL;
// Doing a rejection loop for this because I am lazy.
- while (skill == SK_SPELLCASTING || skill == SK_DIVINATIONS)
+ while (skill == SK_SPELLCASTING)
{
int value = SK_POISON_MAGIC-SK_CONJURATIONS + 1;
skill = skill_type(SK_CONJURATIONS + random2(value));