summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/gen-apt.pl
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-06-08 00:15:48 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-06-08 00:29:23 +0200
commitbefb9a82fc5c795e5670921237535513e5525f39 (patch)
treecddd1d906a00676787ae39ce8b4340e7f19935c4 /crawl-ref/source/util/gen-apt.pl
parent035a96aadae354d07b8003cd6f69121644332bdc (diff)
downloadcrawl-ref-befb9a82fc5c795e5670921237535513e5525f39.tar.gz
crawl-ref-befb9a82fc5c795e5670921237535513e5525f39.zip
Don't use hacks for hiding draconian colour, change the species at level 7.
User-visible changes: * the apt table shows immature draconians as well * non-gray dracs get the stat bonus at level 4 only gray ones used to get (which was an information leak)
Diffstat (limited to 'crawl-ref/source/util/gen-apt.pl')
-rwxr-xr-xcrawl-ref/source/util/gen-apt.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/util/gen-apt.pl b/crawl-ref/source/util/gen-apt.pl
index 38efdb4a65..0e1e780461 100755
--- a/crawl-ref/source/util/gen-apt.pl
+++ b/crawl-ref/source/util/gen-apt.pl
@@ -69,6 +69,7 @@ sub fix_draco_species {
else {
$sp = sprintf("%*s", $$rseen, $flavour);
}
+ $sp =~ s/ Base//;
}
$sp
}
@@ -110,8 +111,6 @@ sub aptitude_table {
my $text = '';
my $seen_draconian_length;
for my $sp (sort_species(@SPECIES)) {
- next if $sp eq 'Base Draconian';
-
my $line = '';
$line .= fix_draco_species($sp, \$seen_draconian_length);