From 4153ebb74a9cbcdb20f904f61ec3f77e8438c507 Mon Sep 17 00:00:00 2001 From: dolorous Date: Thu, 14 May 2009 13:44:12 +0000 Subject: 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 --- crawl-ref/source/item_use.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'crawl-ref/source/item_use.cc') 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); } -- cgit v1.2.3-54-g00ecf