summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-15 06:50:53 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-15 06:50:53 +0000
commit3130143ebdde991a85b483a6561ed158a72fdf55 (patch)
treeb74f89adbc33ba3c6ee0b024248a256da8e57622 /crawl-ref/source/item_use.cc
parentab5e363b365d37bf2bdedf1f714c3753d3111dfe (diff)
downloadcrawl-ref-3130143ebdde991a85b483a6561ed158a72fdf55.tar.gz
crawl-ref-3130143ebdde991a85b483a6561ed158a72fdf55.zip
Simplify.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5840 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 484706a56e..d48cfe2fb4 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -3905,8 +3905,8 @@ bool enchant_weapon( enchant_stat_type which_stat, bool quiet, item_def &wpn )
{
if (!quiet)
{
- mprf("%s %s red for a moment.", iname.c_str(),
- wpn.quantity > 1 ? "glow" : "glows");
+ mprf("%s glow%s red for a moment.", iname.c_str(),
+ wpn.quantity > 1 ? "" : "s");
}
wpn.plus++;