summaryrefslogtreecommitdiffstats
path: root/nms-patches/EntityHuman.patch
diff options
context:
space:
mode:
authormd_5 <git@md-5.net>2016-12-23 22:39:33 +1100
committermd_5 <git@md-5.net>2016-12-23 22:40:38 +1100
commit96f03d906578da759c1cf1d4caff7e7cd49cf18c (patch)
tree8f89a65ff911deea660c8e575bc5bf967d2ee1df /nms-patches/EntityHuman.patch
parent746cf0f0d7ef9f494699ebecf7404e74b4d57e7a (diff)
downloadcraftbukkit-96f03d906578da759c1cf1d4caff7e7cd49cf18c.tar
craftbukkit-96f03d906578da759c1cf1d4caff7e7cd49cf18c.tar.gz
craftbukkit-96f03d906578da759c1cf1d4caff7e7cd49cf18c.tar.lz
craftbukkit-96f03d906578da759c1cf1d4caff7e7cd49cf18c.tar.xz
craftbukkit-96f03d906578da759c1cf1d4caff7e7cd49cf18c.zip
SPIGOT-2127: Add DamageCause.ENTITY_SWEEP_ATTACK
Diffstat (limited to 'nms-patches/EntityHuman.patch')
-rw-r--r--nms-patches/EntityHuman.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/nms-patches/EntityHuman.patch b/nms-patches/EntityHuman.patch
index fce5fd79..7bc17380 100644
--- a/nms-patches/EntityHuman.patch
+++ b/nms-patches/EntityHuman.patch
@@ -279,7 +279,7 @@
if (entityliving != this && entityliving != entity && !this.r(entityliving) && this.h(entityliving) < 9.0D) {
+ // CraftBukkit start - Only apply knockback if the damage hits
-+ if (entityliving.damageEntity(DamageSource.playerAttack(this), f4)) {
++ if (entityliving.damageEntity(DamageSource.playerAttack(this).sweep(), f4)) {
entityliving.a(this, 0.4F, (double) MathHelper.sin(this.yaw * 0.017453292F), (double) (-MathHelper.cos(this.yaw * 0.017453292F)));
- entityliving.damageEntity(DamageSource.playerAttack(this), f4);
+ }