From 446dd4a340646336f8e058b8d1bd493d05edb3c4 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 26 May 2015 12:37:18 -0400 Subject: [PATCH] v0.3.0: reduced starting charges on wand of regrowth to 1 --- .../shatteredpixeldungeon/items/wands/WandOfRegrowth.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java index 3540abe44..506a29891 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfRegrowth.java @@ -201,6 +201,11 @@ public class WandOfRegrowth extends Wand { Sample.INSTANCE.play( Assets.SND_ZAP ); } + @Override + protected int initialCharges() { + return 1; + } + @Override //consumes all available charges, needs at least one. protected int chargesPerCast() {