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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 464fb3e58e..b69c5468e5 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -248,7 +248,7 @@ static void _pick_random_species_and_class( bool unrestricted_only )
job_type job = JOB_UNKNOWN;
// For each valid (species, class) choose one randomly.
- for (int sp = SP_HUMAN; sp < NUM_SPECIES; sp++)
+ for (int sp = 0; sp < NUM_SPECIES; sp++)
{
// We only want draconians counted once in this loop...
// We'll add the variety lower down -- bwr