Fixes SwiftKick cooldown not respecting config

This commit is contained in:
Loony 2016-05-01 10:02:29 +01:00
parent 014fbbc638
commit 713860f7e8

View file

@ -23,7 +23,7 @@ public class SwiftKick extends ChiAbility {
}
this.damage = getConfig().getInt("Abilities.Chi.SwiftKick.Damage");
this.blockChance = getConfig().getInt("Abilities.Chi.ChiCombo.ChiBlockChance");
this.cooldown = getConfig().getInt("Abilities.Chi.ChiCombo.Immobilize.Cooldown");
this.cooldown = getConfig().getInt("Abilities.Chi.SwiftKick.Cooldown");
this.target = GeneralMethods.getTargetedEntity(player, 4);
start();
}