v0.9.1: fixed talisman of foresight gaining charge while cursed

This commit is contained in:
Evan Debenham 2020-10-27 16:11:33 -04:00
parent 8966e41c96
commit 04ee91729c

View File

@ -316,8 +316,10 @@ public class TalismanOfForesight extends Artifact {
}
public void charge(int boost){
if (!cursed) {
charge = Math.min((charge + boost), chargeCap);
}
}
@Override
public String toString() {