summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-01-07 05:27:29 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-01-08 04:00:29 +0100
commit2d6cadf7aa8a0c73f109fd081f369ddcff105011 (patch)
treea12d657a93fcd599ae8ea290d202a4a44b72b670 /crawl-ref/source/newgame.cc
parentbdbcbb4b3efb42c6d7820e6af2fbd69925a65886 (diff)
downloadcrawl-ref-2d6cadf7aa8a0c73f109fd081f369ddcff105011.tar.gz
crawl-ref-2d6cadf7aa8a0c73f109fd081f369ddcff105011.zip
Tentatively, mark Lava Orcs as trunk-only.
There's probably enough time before 0.12, but it's less harsh to enable rather than deny something just before the release.
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 2c2262112b..27dc549abe 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -30,6 +30,7 @@
#include "species.h"
#include "state.h"
#include "stuff.h"
+#include "version.h"
#ifdef USE_TILE_LOCAL
#include "tilereg-crt.h"
@@ -160,13 +161,11 @@ static bool _is_species_valid_choice(species_type species)
if (species >= SP_ELF) // These are all invalid.
return false;
-#if 0
- if (species == SP_MY_NEW_TRUNK_ONLY_EXPERIMENT
+ if (species == SP_LAVA_ORC
&& Version::ReleaseType() != VER_ALPHA)
{
return false;
}
-#endif
// Non-base draconians cannot be selected either.
if (species >= SP_RED_DRACONIAN && species < SP_BASE_DRACONIAN)