summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-28 23:41:06 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-29 01:07:35 +0100
commitdcc0ed19d09e205c10bddb627c27520477f126f0 (patch)
treef9a14537b928c16f535eb21517242db7c180034e /crawl-ref/source/travel.cc
parentf6a14d95cd3737dd283c16f87fb9666774fb5aa4 (diff)
downloadcrawl-ref-dcc0ed19d09e205c10bddb627c27520477f126f0.tar.gz
crawl-ref-dcc0ed19d09e205c10bddb627c27520477f126f0.zip
Reverse the order of arguments in mpr_nojoin().
The old one was quite bizarre, inconsistent with mprf(). Only two cases used the default channel (mpr_nojoin() is quite special...), so I did not add an overload with the default.
Diffstat (limited to 'crawl-ref/source/travel.cc')
-rw-r--r--crawl-ref/source/travel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index 0d0f312e5f..49408e31ab 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -3020,7 +3020,7 @@ void start_explore(bool grab_items)
{
if (Options.auto_sacrifice == AS_PROMPT)
{
- mpr_nojoin("Things which can be sacrificed:", MSGCH_FLOOR_ITEMS);
+ mpr_nojoin(MSGCH_FLOOR_ITEMS, "Things which can be sacrificed:");
for (stack_iterator si(you.visible_igrd(you.pos())); si; ++si)
if (si->is_greedy_sacrificeable())
mpr_nocap(get_menu_colour_prefix_tags(*si, DESC_A));