summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 245c3300b7..6aae2c64c6 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -553,6 +553,13 @@ static void reassess_starting_skills()
else
break;
}
+
+ // Spellcasters should always have Spellcasting skill.
+ if ( i == SK_SPELLCASTING && you.skills[i] == 0 )
+ {
+ you.skill_points[i] = (skill_exp_needed(2) * sp_diff) / 100;
+ you.skills[i] = 1;
+ }
}
}