summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.cc
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2013-11-28 09:25:12 +0100
committerNeil Moore <neil@s-z.org>2013-11-28 11:16:38 -0500
commitd9dfa8fc9755fb0a4e8954c7eb94f32fe97b82e0 (patch)
tree812a6f86bd142c3fd8d9215873d9060074e39754 /crawl-ref/source/delay.cc
parent72c2b335f28c212203c9a7a54ccf1e9fda117c0d (diff)
downloadcrawl-ref-d9dfa8fc9755fb0a4e8954c7eb94f32fe97b82e0.tar.gz
crawl-ref-d9dfa8fc9755fb0a4e8954c7eb94f32fe97b82e0.zip
Replace `mprf(ch, s)` with `mpr(s, ch)`
Scripted, then manually reviewed.
Diffstat (limited to 'crawl-ref/source/delay.cc')
-rw-r--r--crawl-ref/source/delay.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index 721d289e48..4ec608d7e7 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -863,7 +863,7 @@ void handle_delay()
break;
case DELAY_BUTCHER:
- mprf(MSGCH_MULTITURN_ACTION, "You continue butchering the corpse.");
+ mpr("You continue butchering the corpse.", MSGCH_MULTITURN_ACTION);
break;
case DELAY_BOTTLE_BLOOD:
@@ -916,7 +916,7 @@ void handle_delay()
stop_delay();
return;
}
- mprf(MSGCH_MULTITURN_ACTION, "You continue drinking.");
+ mpr("You continue drinking.", MSGCH_MULTITURN_ACTION);
vampire_nutrition_per_turn(corpse, 0);
break;
}
@@ -1725,7 +1725,7 @@ void autotoggle_autopickup(bool off)
else if (Options.autopickup_on < 0) // was turned off automatically
{
Options.autopickup_on = 1;
- mprf(MSGCH_WARN, "Reactivating autopickup.");
+ mpr("Reactivating autopickup.", MSGCH_WARN);
}
}