summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index f3e83a8c6f..e9eea5b590 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3510,7 +3510,7 @@ int check_stealth(void)
break;
case SP_VAMPIRE:
// Hungry/bat-form vampires are (much) more stealthy
- if (you.hunger_state <= HS_STARVING)
+ if (you.hunger_state == HS_STARVING)
stealth += (you.skills[SK_STEALTH] * 21);
else if (you.attribute[ATTR_TRANSFORMATION] == TRAN_BAT
|| you.hunger_state <= HS_NEAR_STARVING)