v3.3.0: hitting an enemy no longer sets combo time to 5 if it was higher
This commit is contained in:
@@ -90,7 +90,7 @@ public class Combo extends Buff implements ActionIndicator.Action {
|
||||
public void hit( Char enemy ) {
|
||||
|
||||
count++;
|
||||
comboTime = 5f;
|
||||
comboTime = Math.max(comboTime, 5f);
|
||||
|
||||
if (!enemy.isAlive() || (enemy.buff(Corruption.class) != null && enemy.HP == enemy.HT)){
|
||||
comboTime = 15f + 15f*((Hero)target).pointsInTalent(Talent.CLEAVE);
|
||||
|
||||
Reference in New Issue
Block a user