summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/delay.cc')
-rw-r--r--crawl-ref/source/delay.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index bccac34824..46f8901537 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -695,7 +695,8 @@ void handle_delay( void )
items_for_multidrop.erase( items_for_multidrop.begin() );
break;
case DELAY_EAT:
- mpr("You continue eating.", MSGCH_MULTITURN_ACTION);
+ mprf(MSGCH_MULTITURN_ACTION, "You continue %sing.",
+ you.species == SP_VAMPIRE ? "drink" : "eat");
break;
default:
break;
@@ -776,10 +777,8 @@ static void finish_delay(const delay_queue_item &delay)
break;
}
case DELAY_EAT:
- if (you.species == SP_VAMPIRE)
- mpr( "You finish drinking." );
- else
- mpr( "You finish eating." );
+ mprf("You finish %sing.",
+ you.species == SP_VAMPIRE ? "drink" : "eat");
// For chunks, warn the player if they're not getting much
// nutrition.
if (delay.parm1)