v2.0.2: fixed the threshold for monastic vigor being lower than intended

This commit is contained in:
Evan Debenham
2023-04-10 16:46:08 -04:00
parent 1cc91bf038
commit d31b539824

View File

@@ -234,7 +234,7 @@ public class MonkEnergy extends Buff implements ActionIndicator.Action {
public boolean abilitiesEmpowered( Hero hero ){
//100%/80%/60% energy at +1/+2/+3
return energy/energyCap() >= 1.15f - 0.2f*hero.pointsInTalent(Talent.MONASTIC_VIGOR);
return energy/energyCap() >= 1.2f - 0.2f*hero.pointsInTalent(Talent.MONASTIC_VIGOR);
}
public void processCombinedEnergy(Talent.CombinedEnergyAbilityTracker tracker){