summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 28825c8407..4a2609c606 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -2086,7 +2086,6 @@ static bool _do_ability(const ability_def& abil)
break;
case ABIL_CHRONOS_PONDEROUSIFY:
- mprf(MSGCH_DIAGNOSTICS, "Making something ponderous.");
ponderousify_armour();
break;
@@ -2102,7 +2101,9 @@ static bool _do_ability(const ability_def& abil)
case ABIL_CHRONOS_SLOUCH:
mpr("You can feel time thicken.");
- mprf(MSGCH_GOD, "your speed is %d", player_movement_speed());
+#ifdef DEBUG_DIAGNOSTICS
+ mprf(MSGCH_DIAGNOSTICS, "your speed is %d", player_movement_speed());
+#endif
chronos_slouch(0); //TODO make pow not a dummy value.
break;