summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-14 13:44:12 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-14 13:44:12 +0000
commit4153ebb74a9cbcdb20f904f61ec3f77e8438c507 (patch)
tree7b903c14b232df34cd2c2f9c11f25faabedb37bd /crawl-ref/source/item_use.cc
parent4759bd486654762763a6d480f9d911881bbfdabd (diff)
downloadcrawl-ref-4153ebb74a9cbcdb20f904f61ec3f77e8438c507.tar.gz
crawl-ref-4153ebb74a9cbcdb20f904f61ec3f77e8438c507.zip
Fix pluralization problem when recharging a wand only gives it 1 charge.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9764 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 1e03712a56..a00ebe3ea4 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -4040,6 +4040,7 @@ void zap_wand(int slot)
mprf("This wand has %d charge%s left.",
wand.plus, wand.plus == 1 ? "" : "s");
+
set_ident_flags(wand, ISFLAG_KNOW_PLUSES);
}