From 3130143ebdde991a85b483a6561ed158a72fdf55 Mon Sep 17 00:00:00 2001 From: dolorous Date: Sun, 15 Jun 2008 06:50:53 +0000 Subject: Simplify. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5840 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/item_use.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref') 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++; -- cgit v1.2.3-54-g00ecf