summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index 154efed495..feb8da6325 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -1763,8 +1763,8 @@ bool recharge_wand(int item_slot)
break;
}
- // Don't display zap counts any more.
- wand.plus2 = ZAPCOUNT_UNKNOWN;
+ // Reinitialize zap counts.
+ wand.plus2 = ZAPCOUNT_RECHARGED;
const int new_charges =
std::max<int>(
@@ -1775,7 +1775,7 @@ bool recharge_wand(int item_slot)
const bool charged = new_charges > wand.plus;
- std::string desc = "";
+ std::string desc;
if (charged && item_ident(wand, ISFLAG_KNOW_PLUSES))
{
snprintf(info, INFO_SIZE, " and now has %d charges", new_charges);