diff --git a/src/com/projectkorra/projectkorra/airbending/AirBlast.java b/src/com/projectkorra/projectkorra/airbending/AirBlast.java index 986d15b9..027200ad 100644 --- a/src/com/projectkorra/projectkorra/airbending/AirBlast.java +++ b/src/com/projectkorra/projectkorra/airbending/AirBlast.java @@ -92,7 +92,7 @@ public class AirBlast extends AirAbility { if (entity != null) { this.direction = GeneralMethods.getDirection(this.origin, entity.getLocation()).normalize(); } else { - this.direction = GeneralMethods.getDirection(this.origin, GeneralMethods.getTargetedLocation(player, this.range)).normalize(); + this.direction = player.getEyeLocation().getDirection().normalize(); } } else { this.origin = player.getEyeLocation();