summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 6d09c966e1..1ac798b66e 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -1097,8 +1097,9 @@ static undead_state_type _get_undead_state(const species_type sp)
case SP_MUMMY:
return US_UNDEAD;
case SP_GHOUL:
- case SP_VAMPIRE:
return US_HUNGRY_DEAD;
+ case SP_VAMPIRE:
+ return US_SEMI_UNDEAD;
default:
ASSERT(!_species_is_undead(sp));
return (US_ALIVE);