v3.0.0: fixed monk's action indicator possibly showing with <1 energy

This commit is contained in:
Evan Debenham
2024-11-28 11:03:25 -05:00
parent ce7dfedb6c
commit 32d32c9e8e

View File

@@ -193,7 +193,7 @@ public class MonkEnergy extends Buff implements ActionIndicator.Action {
energy = Math.min(energy+energyGain, energyCap());
if (energy > 0 && cooldown == 0){
if (energy >= 1 && cooldown == 0){
ActionIndicator.setAction(this);
}
BuffIndicator.refreshHero();