v0.2.4a: fixed a bug with transmuted wands having the wrong amount of charges

This commit is contained in:
Evan Debenham
2015-02-25 09:18:55 -05:00
parent 4ec2e9deb7
commit 45d4297177
2 changed files with 2 additions and 1 deletions
@@ -313,7 +313,7 @@ public abstract class Wand extends KindOfWeapon {
return this;
}
protected void updateLevel() {
public void updateLevel() {
maxCharges = Math.min( initialCharges() + level, 9 );
curCharges = Math.min( curCharges, maxCharges );