summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/gen-apt.pl
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-05-03 08:40:18 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-05-03 08:49:04 +0200
commit82db08e6861eaf828561fe187eefc5324059b3cd (patch)
tree147e602c7af94d264c3e17bc7a5bfce39d28ccd9 /crawl-ref/source/util/gen-apt.pl
parenta04c70050511f8e8f3117a6b24daa53495271816 (diff)
downloadcrawl-ref-82db08e6861eaf828561fe187eefc5324059b3cd.tar.gz
crawl-ref-82db08e6861eaf828561fe187eefc5324059b3cd.zip
Djinn: hide HP/MP apts.
They actually do matter, yet let's hide them so folks don't see when djinn get hit by the nerf bat.
Diffstat (limited to 'crawl-ref/source/util/gen-apt.pl')
-rwxr-xr-xcrawl-ref/source/util/gen-apt.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/util/gen-apt.pl b/crawl-ref/source/util/gen-apt.pl
index a9315f0afa..d35a73582b 100755
--- a/crawl-ref/source/util/gen-apt.pl
+++ b/crawl-ref/source/util/gen-apt.pl
@@ -270,4 +270,7 @@ sub load_mods
{
die "Can't find table: $_ in $modfile\n" unless $SPECIES_SKILLS{Spriggan}{$_};
}
+
+ $SPECIES_SKILLS{Djinni}{'Hit Points'} = -99;
+ $SPECIES_SKILLS{Djinni}{'Magic Points'} = -99;
}