v0.8.1: fixed incorrect combo icon fading after cleave
This commit is contained in:
parent
ce09dade95
commit
1e1fb54f3e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user