2020-01-22 03:02:07 +01:00
|
|
|
From 5e79b0383c61e9474b21ecfa7805505bda9459a4 Mon Sep 17 00:00:00 2001
|
2018-04-18 15:46:48 +02:00
|
|
|
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/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-01-18 18:28:32 +01:00
|
|
|
index 77cdbfadf..171c8e303 100644
|
2018-04-18 15:46:48 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2020-01-18 18:28:32 +01:00
|
|
|
@@ -356,4 +356,9 @@ public class PaperWorldConfig {
|
2018-07-21 23:24:18 +02:00
|
|
|
private void squidMaxSpawnHeight() {
|
2018-07-18 20:55:52 +02:00
|
|
|
squidMaxSpawnHeight = getDouble("squid-spawn-height.maximum", 0.0D);
|
2018-04-18 15:46:48 +02:00
|
|
|
}
|
2018-07-21 23:24:18 +02:00
|
|
|
+
|
2018-04-18 15:46:48 +02:00
|
|
|
+ public boolean disableSprintInterruptionOnAttack;
|
|
|
|
+ private void disableSprintInterruptionOnAttack() {
|
|
|
|
+ disableSprintInterruptionOnAttack = getBoolean("game-mechanics.disable-sprint-interruption-on-attack", false);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityHuman.java b/src/main/java/net/minecraft/server/EntityHuman.java
|
2020-01-22 03:02:07 +01:00
|
|
|
index 0f12f8386..2b7c0a29d 100644
|
2018-04-18 15:46:48 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityHuman.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
|
2019-12-12 00:43:22 +01:00
|
|
|
@@ -1112,7 +1112,11 @@ public abstract class EntityHuman extends EntityLiving {
|
2019-04-29 05:14:31 +02:00
|
|
|
}
|
2018-04-18 15:46:48 +02:00
|
|
|
|
2019-04-29 05:14:31 +02:00
|
|
|
this.setMot(this.getMot().d(0.6D, 1.0D, 0.6D));
|
2018-04-18 15:46:48 +02:00
|
|
|
- this.setSprinting(false);
|
|
|
|
+ // Paper start - Configuration option to disable automatic sprint interruption
|
|
|
|
+ if (!world.paperConfig.disableSprintInterruptionOnAttack) {
|
|
|
|
+ this.setSprinting(false);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag3) {
|
|
|
|
--
|
2020-01-18 18:28:32 +01:00
|
|
|
2.25.0.windows.1
|
2018-04-18 15:46:48 +02:00
|
|
|
|