2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Brokkonaut <hannos17@gmx.de>
|
|
|
|
Date: Sat, 14 Apr 2018 20:20:46 +0200
|
|
|
|
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
|
2024-01-24 11:45:17 +01:00
|
|
|
index 04d02c456d2e3562dcd122cb1951f8de3d808f7f..0c2c998a22a9328696bef75f48e1a5abd8589fa7 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/player/Player.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/player/Player.java
|
2024-01-24 11:45:17 +01:00
|
|
|
@@ -1281,7 +1281,11 @@ public abstract class Player extends LivingEntity {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
2023-09-22 00:01:00 +02:00
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
this.setDeltaMovement(this.getDeltaMovement().multiply(0.6D, 1.0D, 0.6D));
|
|
|
|
- this.setSprinting(false);
|
2024-01-22 18:04:55 +01:00
|
|
|
+ // Paper start - Configurable sprint interruption on attack
|
2023-06-07 22:19:14 +02:00
|
|
|
+ if (!this.level().paperConfig().misc.disableSprintInterruptionOnAttack) {
|
2021-06-11 14:02:28 +02:00
|
|
|
+ this.setSprinting(false);
|
|
|
|
+ }
|
2024-01-22 18:04:55 +01:00
|
|
|
+ // Paper end - Configurable sprint interruption on attack
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
2023-09-22 00:01:00 +02:00
|
|
|
|
2021-06-11 14:02:28 +02:00
|
|
|
if (flag3) {
|