summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index d6700faa1e..7fc8f84165 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -601,7 +601,7 @@ static bool _vamp_wants_blood_from_monster(const monsters *mon)
if (you.species != SP_VAMPIRE)
return (false);
- if (you.hunger_state >= HS_ENGORGED)
+ if (you.hunger_state == HS_ENGORGED)
return (false);
if (!mons_has_blood(mon->type))