summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-28 18:39:07 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-28 18:39:07 +0000
commit6d5bf15adddfa9829fa99c097ad715432f449c2f (patch)
treefcd5a7bab89cd30d8a702d8cbcd47e76aa92900e /crawl-ref/source/delay.cc
parent3b56aaee9f71dfb8274f9c2e86eca9a2b0a7dfd9 (diff)
downloadcrawl-ref-6d5bf15adddfa9829fa99c097ad715432f449c2f.tar.gz
crawl-ref-6d5bf15adddfa9829fa99c097ad715432f449c2f.zip
Forward-port vampire satiation fixes and cosmetic fixes from 0.5 r10447.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10453 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/delay.cc')
-rw-r--r--crawl-ref/source/delay.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index 995494cf13..9244f4e5da 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -829,8 +829,15 @@ void handle_delay()
// XXX: need to handle passwall when monster digs -- bwr
if (delay.type == DELAY_FEED_VAMPIRE)
{
+ // Vampires stop feeding if ...
+ // * engorged ("alive")
+ // * bat form runs out due to becoming full
+ // * corpse becomes poisonous as the Vampire loses poison resistance
if (you.hunger_state == HS_ENGORGED
- || you.hunger_state > HS_SATIATED && player_in_bat_form())
+ || you.hunger_state > HS_SATIATED && player_in_bat_form()
+ || you.hunger_state >= HS_SATIATED
+ && is_valid_item(mitm[delay.parm1])
+ && is_poisonous(mitm[delay.parm1]))
{
// Messages handled in _food_change() in food.cc.
stop_delay();