summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/species.cc
diff options
context:
space:
mode:
authorBrendan Hickey <brendan@bhickey.net>2014-04-06 13:19:52 -0400
committerBrendan Hickey <brendan@bhickey.net>2014-04-06 13:19:52 -0400
commit44c3f01e58d1dae5f5d98f71e62038fc367b6722 (patch)
tree2198f49914838b12086f583123d46e611d8d3830 /crawl-ref/source/species.cc
parent11025d95a6422c57019bb5916118aaf7b2febdc8 (diff)
downloadcrawl-ref-44c3f01e58d1dae5f5d98f71e62038fc367b6722.tar.gz
crawl-ref-44c3f01e58d1dae5f5d98f71e62038fc367b6722.zip
Remove Large Rock throwing from Fo
They can't use GSC, so they probably shouldn't be able to use large rocks either. See also commit 9a20582491
Diffstat (limited to 'crawl-ref/source/species.cc')
-rw-r--r--crawl-ref/source/species.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/species.cc b/crawl-ref/source/species.cc
index 1d065ddc3d..3ce8163f28 100644
--- a/crawl-ref/source/species.cc
+++ b/crawl-ref/source/species.cc
@@ -261,8 +261,7 @@ bool species_likes_lava(species_type species)
bool species_can_throw_large_rocks(species_type species)
{
return species == SP_OGRE
- || species == SP_TROLL
- || species == SP_FORMICID;
+ || species == SP_TROLL;
}
genus_type species_genus(species_type species)