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.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/debug.cc b/crawl-ref/source/debug.cc
index 44911b0945..0077837804 100644
--- a/crawl-ref/source/debug.cc
+++ b/crawl-ref/source/debug.cc
@@ -2722,8 +2722,9 @@ void debug_stethoscope(int mon)
{
ASSERT(mons.ghost.get());
const ghost_demon &ghost = *mons.ghost;
- mprf(MSGCH_DIAGNOSTICS, "Ghost damage: %d; brand: %d",
- ghost.damage, ghost.brand);
+ mprf(MSGCH_DIAGNOSTICS, "Ghost damage: %d; brand: %d; att_type: %d; "
+ "att_flav: %d",
+ ghost.damage, ghost.brand, ghost.att_type, ghost.att_flav);
}
}