diff --git a/Dev Builds/Korra.jar b/Dev Builds/Korra.jar index 1a592e73..4e9b7a75 100644 Binary files a/Dev Builds/Korra.jar and b/Dev Builds/Korra.jar differ diff --git a/src/com/projectkorra/ProjectKorra/airbending/Suffocate.java b/src/com/projectkorra/ProjectKorra/airbending/Suffocate.java index d68c9a88..7191f18d 100644 --- a/src/com/projectkorra/ProjectKorra/airbending/Suffocate.java +++ b/src/com/projectkorra/ProjectKorra/airbending/Suffocate.java @@ -15,6 +15,7 @@ import org.bukkit.entity.LivingEntity; import org.bukkit.entity.Player; import org.bukkit.potion.PotionEffect; import org.bukkit.potion.PotionEffectType; +import org.bukkit.util.Vector; import com.projectkorra.ProjectKorra.Methods; import com.projectkorra.ProjectKorra.ProjectKorra; @@ -143,6 +144,7 @@ public class Suffocate { new TempPotionEffect((LivingEntity) entity, nausea); if (System.currentTimeMillis() >= time + warmup) { Methods.damageEntity(player, entity, damage); + entity.setVelocity(new Vector(0, 0, 0)); } } } catch (ConcurrentModificationException e) {