summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/aptitudes.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-11 23:33:59 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-12 04:27:09 +0100
commit76cd1e1177ea188bba495bc77d5830cb8dd12f26 (patch)
tree14d594c3166217bee460aaf6335d45cca8fcbc8e /crawl-ref/source/aptitudes.h
parent34c0606fae2a491fe501605071b37ba4535ea604 (diff)
downloadcrawl-ref-76cd1e1177ea188bba495bc77d5830cb8dd12f26.tar.gz
crawl-ref-76cd1e1177ea188bba495bc77d5830cb8dd12f26.zip
Unbreak formicid aptitudes for versions > 34.
Diffstat (limited to 'crawl-ref/source/aptitudes.h')
-rw-r--r--crawl-ref/source/aptitudes.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/aptitudes.h b/crawl-ref/source/aptitudes.h
index 29dfef08d4..2211078ec0 100644
--- a/crawl-ref/source/aptitudes.h
+++ b/crawl-ref/source/aptitudes.h
@@ -1428,8 +1428,13 @@ static const species_skill_aptitude species_skill_aptitudes[] =
APT(SP_FORMICID, SK_ARMOUR, 2),
APT(SP_FORMICID, SK_DODGING, -1),
APT(SP_FORMICID, SK_STEALTH, 3),
+#if TAG_MAJOR_VERSION == 34
+ APT(SP_FORMICID, SK_STABBING, -99),
+#endif
APT(SP_FORMICID, SK_SHIELDS, 0),
- APT(SP_FORMICID, SK_TRAPS, 1),
+#if TAG_MAJOR_VERSION == 34
+ APT(SP_FORMICID, SK_TRAPS, -99),
+#endif
APT(SP_FORMICID, SK_UNARMED_COMBAT, 0),
APT(SP_FORMICID, SK_SPELLCASTING, -1),
APT(SP_FORMICID, SK_CONJURATIONS, -1),