diff --git a/src/com/projectkorra/projectkorra/airbending/combo/Twister.java b/src/com/projectkorra/projectkorra/airbending/combo/Twister.java index ab673db4..30d12d78 100644 --- a/src/com/projectkorra/projectkorra/airbending/combo/Twister.java +++ b/src/com/projectkorra/projectkorra/airbending/combo/Twister.java @@ -27,8 +27,6 @@ public class Twister extends AirAbility implements ComboAbility { @Attribute(Attribute.COOLDOWN) private long cooldown; private long time; - @Attribute(Attribute.DAMAGE) - private double damage; @Attribute(Attribute.SPEED) private double speed; @Attribute(Attribute.RANGE) @@ -71,7 +69,7 @@ public class Twister extends AirAbility implements ComboAbility { if (this.bPlayer.isAvatarState()) { this.cooldown = 0; - this.damage = config.AvatarState_Height; + this.twisterHeight = config.AvatarState_Height; this.range = config.AvatarState_Range; } diff --git a/src/com/projectkorra/projectkorra/configuration/configs/properties/ChiPropertiesConfig.java b/src/com/projectkorra/projectkorra/configuration/configs/properties/ChiPropertiesConfig.java index 775038df..3f056c53 100644 --- a/src/com/projectkorra/projectkorra/configuration/configs/properties/ChiPropertiesConfig.java +++ b/src/com/projectkorra/projectkorra/configuration/configs/properties/ChiPropertiesConfig.java @@ -6,8 +6,8 @@ public class ChiPropertiesConfig implements Config { public final String Description = ""; - public final double BlockChiChance = 0; - public final long BlockChiDuration = 0; + public final double BlockChiChance = 25; + public final long BlockChiDuration = 1000; @Override public String getName() {