summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-28 18:43:36 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-28 18:43:36 +0000
commit21c54e7245bb00f366db098092362e9c84f2e59b (patch)
treeaa9aa0faeefe0a8513a24d0b469141ce5eaf7ca0 /crawl-ref/source/item_use.cc
parentcc38b1d0b48c8083b0762eae2072b553fe7f5ed8 (diff)
downloadcrawl-ref-21c54e7245bb00f366db098092362e9c84f2e59b.tar.gz
crawl-ref-21c54e7245bb00f366db098092362e9c84f2e59b.zip
Better messages for explore finding multiple non-stacking items (say "two leather armours" instead of "leather armour and leather armour").
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2245 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 060b994f5b..212e2ea00e 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -479,7 +479,8 @@ void wield_effects(int item_wield_2, bool showMsgs)
case SPWPN_ELECTROCUTION:
if (!silenced(you.x_pos, you.y_pos))
- mpr("You hear the crackle of electricity.", MSGCH_SOUND);
+ mpr("You hear the crackle of electricity.",
+ MSGCH_SOUND);
else
mpr("You see sparks fly.");
break;