summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-03 23:21:52 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-03 23:21:52 +0000
commitc408f8b544f47a4d2e7aebc75c8ac5535d4767b6 (patch)
treec9f66c8020ed349f213e9e1835459b1feb473b88 /crawl-ref/source/monplace.cc
parent419f00a75943e625e36cb6fb2eafe6e4e11f6024 (diff)
downloadcrawl-ref-c408f8b544f47a4d2e7aebc75c8ac5535d4767b6.tar.gz
crawl-ref-c408f8b544f47a4d2e7aebc75c8ac5535d4767b6.zip
Harpies now also eat food on the ground.
Add a description (as suggested by David) and two quotes. Since harpies will eat anything they are now resistant to poison. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7737 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monplace.cc')
-rw-r--r--crawl-ref/source/monplace.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index 487bbd6704..2bb70188b6 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -1459,7 +1459,7 @@ static band_type _choose_band( int mon_type, int power, int &band_size )
band_size = 3 + random2(3);
break;
case MONS_HARPY:
- band = BAND_HARPYES;
+ band = BAND_HARPIES;
band_size = 2 + random2(3);
break;
@@ -1568,7 +1568,7 @@ static monster_type _band_member(band_type band, int power)
mon_type = MONS_YAK;
break;
- case BAND_HARPYES:
+ case BAND_HARPIES:
mon_type = MONS_HARPY;
case BAND_UGLY_THINGS: