summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/species.cc
diff options
context:
space:
mode:
authorpubby <pubby8@gmail.com>2014-01-19 13:27:25 -0600
committerAdam Borowski <kilobyte@angband.pl>2014-01-20 12:40:25 +0100
commita5f20ec47410ee1c775302a75187a173e6401485 (patch)
tree62f095405da286718a0c9f40be2d34496cfe98b0 /crawl-ref/source/species.cc
parente4ac22e01a67cb49b54782457bd9e5466a2314c2 (diff)
downloadcrawl-ref-a5f20ec47410ee1c775302a75187a173e6401485.tar.gz
crawl-ref-a5f20ec47410ee1c775302a75187a173e6401485.zip
Buff Formicids.
HP to -1 and Spellcasting to 0. Because of this change, their exoskeleton mutation no longer provides extra HP.
Diffstat (limited to 'crawl-ref/source/species.cc')
-rw-r--r--crawl-ref/source/species.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/species.cc b/crawl-ref/source/species.cc
index e0e03ed037..e4a3626430 100644
--- a/crawl-ref/source/species.cc
+++ b/crawl-ref/source/species.cc
@@ -490,7 +490,6 @@ int species_hp_modifier(species_type species)
case SP_DEEP_ELF:
case SP_TENGU:
case SP_KOBOLD:
- case SP_FORMICID:
case SP_GARGOYLE:
return -2;
case SP_HIGH_ELF:
@@ -498,6 +497,7 @@ int species_hp_modifier(species_type species)
case SP_HALFLING:
case SP_OCTOPODE:
case SP_DJINNI:
+ case SP_FORMICID:
return -1;
default:
return 0;