summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2013-04-07 01:44:52 +0100
committerChris Campbell <chriscampbell89@gmail.com>2013-04-07 01:44:52 +0100
commit57aa865f6787dfd7d9a9e9c3a83a9fdb74032d1b (patch)
tree06303d9f392c2a62ec9b0d2dbae033d43afb642f /crawl-ref/source/newgame.cc
parent72b6bbf09cd53add4543dc1cc4d5ec6f33ec12f5 (diff)
downloadcrawl-ref-57aa865f6787dfd7d9a9e9c3a83a9fdb74032d1b.tar.gz
crawl-ref-57aa865f6787dfd7d9a9e9c3a83a9fdb74032d1b.zip
Don't select Stalker as a random background
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index e588d90594..cca4c26953 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -181,6 +181,11 @@ static bool _is_job_valid_choice(job_type job)
if (job < 0 || job > NUM_JOBS)
return false;
+#if TAG_MAJOR_VERSION == 34
+ if (job == JOB_STALKER)
+ return false;
+#endif
+
return true;
}