summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/debug.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/debug.cc')
-rw-r--r--crawl-ref/source/debug.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/debug.cc b/crawl-ref/source/debug.cc
index ee2d8053ba..d7012294fe 100644
--- a/crawl-ref/source/debug.cc
+++ b/crawl-ref/source/debug.cc
@@ -284,10 +284,10 @@ void debug_change_species( void )
}
you.species = sp;
- you.is_undead = ((you.species == SP_MUMMY) ? US_UNDEAD :
- (you.species == SP_GHOUL
- || you.species == SP_VAMPIRE) ? US_HUNGRY_DEAD
- : US_ALIVE);
+ you.is_undead = ((you.species == SP_MUMMY) ? US_UNDEAD :
+ (you.species == SP_GHOUL) ? US_HUNGRY_DEAD :
+ (you.species == SP_VAMPIRE) ? US_SEMI_UNDEAD
+ : US_ALIVE);
redraw_screen();
}
}