v1.2.3: fixed armband not benefiting from ring of energy

This commit is contained in:
Evan Debenham 2022-04-12 16:23:08 -04:00
parent 68d1f04722
commit 0289ce12d6

View File

@ -265,6 +265,7 @@ public class MasterThievesArmband extends Artifact {
if (charge < chargeCap){
float chargeGain = 3f * levelPortion;
chargeGain *= RingOfEnergy.artifactChargeMultiplier(target);
partialCharge += chargeGain;
while (partialCharge > 1f){