summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/state.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-29 01:16:04 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-29 01:16:04 +0100
commit384ea2dcbb33ba073b0c9f6333e20020cada4e16 (patch)
tree3392a4109df7cc9b65d18ac8daa8649213474967 /crawl-ref/source/state.cc
parent43e8c26a322190663cd1abd83e399fa188c9ebf5 (diff)
downloadcrawl-ref-384ea2dcbb33ba073b0c9f6333e20020cada4e16.tar.gz
crawl-ref-384ea2dcbb33ba073b0c9f6333e20020cada4e16.zip
Unbreak tiles.
Diffstat (limited to 'crawl-ref/source/state.cc')
-rw-r--r--crawl-ref/source/state.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/state.cc b/crawl-ref/source/state.cc
index 696f02a870..4fdcfe927b 100644
--- a/crawl-ref/source/state.cc
+++ b/crawl-ref/source/state.cc
@@ -226,9 +226,8 @@ bool interrupt_cmd_repeat(activity_interrupt_type ai,
monster_info mi(mon);
set_auto_exclude(mon);
- string text = get_monster_equipment_desc(mi, DESC_WEAPON);
- text += " comes into view.";
- mpr(text, MSGCH_WARN);
+ mprf(MSGCH_WARN, "%s comes into view.",
+ get_monster_equipment_desc(mi, DESC_WEAPON).c_str());
}
if (crawl_state.game_is_hints())