summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monster.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-12 13:06:17 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-13 00:33:56 -0700
commit533b47cd6b7ff87f5d17d41a5d414cb9f8f3a6f2 (patch)
tree617e4e22ea968e366f570021e05848f5b25ead3d /crawl-ref/source/monster.cc
parent236bd0c7ac0196889f1059fed57e54f748dc61bc (diff)
downloadcrawl-ref-533b47cd6b7ff87f5d17d41a5d414cb9f8f3a6f2.tar.gz
crawl-ref-533b47cd6b7ff87f5d17d41a5d414cb9f8f3a6f2.zip
Remove code for monster formicids wielding giant clubs
Diffstat (limited to 'crawl-ref/source/monster.cc')
-rw-r--r--crawl-ref/source/monster.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index 650f52cbd0..4331bb05ee 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -561,14 +561,8 @@ item_def *monster::melee_weapon() const
hands_reqd_type monster::hands_reqd(const item_def &item) const
{
if (mons_genus(type) == MONS_FORMICID)
- {
- if (weapon_size(item) >= SIZE_BIG)
- return HANDS_TWO;
- else
- return HANDS_ONE;
- }
- else
- return actor::hands_reqd(item);
+ return HANDS_ONE;
+ return actor::hands_reqd(item);
}
bool monster::can_wield(const item_def& item, bool ignore_curse,