aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0632-Prevent-excessive-velocity-through-repeated-crits.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0632-Prevent-excessive-velocity-through-repeated-crits.patch')
-rw-r--r--patches/server/0632-Prevent-excessive-velocity-through-repeated-crits.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/server/0632-Prevent-excessive-velocity-through-repeated-crits.patch b/patches/server/0632-Prevent-excessive-velocity-through-repeated-crits.patch
index d6ec443589..b9094798f2 100644
--- a/patches/server/0632-Prevent-excessive-velocity-through-repeated-crits.patch
+++ b/patches/server/0632-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 94e26d8ba0eb32e241ae4018eee767120192a80d..0ede1e49dc05596b8a2551dbed26f363105b3fe3 100644
+index 4714931fd5218df160e39f013278b7996cc5eca6..45493e09843e5a3c4511f7f1b36cfec9468a0391 100644
--- a/src/main/java/net/minecraft/world/entity/LivingEntity.java
+++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java
-@@ -2744,17 +2744,29 @@ public abstract class LivingEntity extends Entity implements Attackable {
+@@ -2773,17 +2773,29 @@ 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;
}