aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0184-Configurable-sprint-interruption-on-attack.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0184-Configurable-sprint-interruption-on-attack.patch')
-rw-r--r--patches/server/0184-Configurable-sprint-interruption-on-attack.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/patches/server/0184-Configurable-sprint-interruption-on-attack.patch b/patches/server/0184-Configurable-sprint-interruption-on-attack.patch
index a57cf17454..be219944ad 100644
--- a/patches/server/0184-Configurable-sprint-interruption-on-attack.patch
+++ b/patches/server/0184-Configurable-sprint-interruption-on-attack.patch
@@ -6,16 +6,16 @@ Subject: [PATCH] Configurable sprint interruption on attack
If the sprint interruption is disabled players continue sprinting when they attack entities.
diff --git a/src/main/java/net/minecraft/world/entity/player/Player.java b/src/main/java/net/minecraft/world/entity/player/Player.java
-index 92ff2ccfbcc554281a70337a0a759bf6f2e2bca0..6ff215c3d6db1627eda20ba09a3e10eaba589d99 100644
+index 92ff2ccfbcc554281a70337a0a759bf6f2e2bca0..b85838c24c94b282f1f0fe55fa20a2c1f80363a6 100644
--- a/src/main/java/net/minecraft/world/entity/player/Player.java
+++ b/src/main/java/net/minecraft/world/entity/player/Player.java
-@@ -1307,6 +1307,11 @@ public abstract class Player extends LivingEntity {
+@@ -1306,7 +1306,11 @@ public abstract class Player extends LivingEntity {
+ }
this.setDeltaMovement(this.getDeltaMovement().multiply(0.6D, 1.0D, 0.6D));
- this.setSprinting(false);
+ // Paper start - Configurable sprint interruption on attack
+ if (!this.level().paperConfig().misc.disableSprintInterruptionOnAttack) {
-+ this.setSprinting(false);
+ this.setSprinting(false);
+ }
+ // Paper end - Configurable sprint interruption on attack
}