v0.9.3: fixed talisman of foresight not updating quickslot in some cases

This commit is contained in:
Evan Debenham 2021-05-15 17:13:59 -04:00
parent 5d6f27dc2a
commit a4f81dda2f

View File

@ -324,6 +324,7 @@ public class TalismanOfForesight extends Artifact {
public void charge(int boost){
if (!cursed) {
charge = Math.min((charge + boost), chargeCap);
updateQuickslot();
}
}