v0.8.1: fixed incorrect combo icon fading after cleave
This commit is contained in:
@@ -70,7 +70,7 @@ public class Combo extends Buff implements ActionIndicator.Action {
|
||||
|
||||
@Override
|
||||
public float iconFadePercent() {
|
||||
return (4 - comboTime)/4f;
|
||||
return Math.max(0, (4 - comboTime)/4f);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user