v0.3.0: reduced starting charges on wand of regrowth to 1

This commit is contained in:
Evan Debenham 2015-05-26 12:37:18 -04:00
parent 46dffad71d
commit 446dd4a340

View File

@ -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() {