v2.1.0: fixed momentum buff icon turning blue earlier than intended

This commit is contained in:
Evan Debenham
2023-05-22 11:25:42 -04:00
parent 00c8289b18
commit 84864faa9f

View File

@@ -133,7 +133,7 @@ public class Momentum extends Buff implements ActionIndicator.Action {
@Override
public void tintIcon(Image icon) {
if (freerunCooldown == 0){
if (freerunCooldown == 0 || freerunTurns > 0){
icon.hardlight(1,1,0);
} else {
icon.hardlight(0.5f,0.5f,1);