v0.9.2a: fixed armband not responding to artifact charging

This commit is contained in:
Evan Debenham 2021-03-08 19:35:21 -05:00
parent 2d4ffec6a0
commit 4d29efe779

View File

@ -48,10 +48,8 @@ public class MasterThievesArmband extends Artifact {
@Override
public void charge(Hero target, float amount) {
if (charge < chargeCap){
charge += Math.round(10*amount);
updateQuickslot();
}
charge += Math.round(10*amount);
updateQuickslot();
}
@Override