diff options
Diffstat (limited to 'patches/server/0645-Prevent-excessive-velocity-through-repeated-crits.patch')
-rw-r--r-- | patches/server/0645-Prevent-excessive-velocity-through-repeated-crits.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/server/0645-Prevent-excessive-velocity-through-repeated-crits.patch b/patches/server/0645-Prevent-excessive-velocity-through-repeated-crits.patch index 50956e86f7..c26ce6b90a 100644 --- a/patches/server/0645-Prevent-excessive-velocity-through-repeated-crits.patch +++ b/patches/server/0645-Prevent-excessive-velocity-through-repeated-crits.patch @@ -5,10 +5,10 @@ Subject: [PATCH] Prevent excessive velocity through repeated crits diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java -index f5c18ac111188ae2397eaf41cac28edda98c1002..be044167883611dde0665749d9e243b9c7b6fbd2 100644 +index 9cceee5f968d397f27b0618dcc5b5d97ac34b289..b73601d2903f327b4e7b82ccc6774731c832e941 100644 --- a/src/main/java/net/minecraft/world/entity/LivingEntity.java +++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java -@@ -2748,16 +2748,28 @@ public abstract class LivingEntity extends Entity implements Attackable { +@@ -2754,16 +2754,28 @@ public abstract class LivingEntity extends Entity implements Attackable { return this.hasEffect(MobEffects.JUMP) ? 0.1F * ((float) this.getEffect(MobEffects.JUMP).getAmplifier() + 1.0F) : 0.0F; } |