2018-07-18 20:55:52 +02:00
|
|
|
From 86b8ecd4561a6f79d1fc63cf647acdb61988f002 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
|
2018-07-18 20:55:52 +02:00
|
|
|
index 830b99cd7..87d2dd131 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
|
2018-07-18 20:55:52 +02:00
|
|
|
@@ -424,4 +424,8 @@ public class PaperWorldConfig {
|
|
|
|
squidMaxSpawnHeight = getDouble("squid-spawn-height.maximum", 0.0D);
|
2018-04-18 15:46:48 +02:00
|
|
|
}
|
2018-07-18 20:55:52 +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
|
2018-07-18 20:55:52 +02:00
|
|
|
index 02f5d61c8..fc5263f08 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
|
2018-07-18 20:55:52 +02:00
|
|
|
@@ -1073,7 +1073,11 @@ public abstract class EntityHuman extends EntityLiving {
|
2018-04-18 15:46:48 +02:00
|
|
|
|
|
|
|
this.motX *= 0.6D;
|
|
|
|
this.motZ *= 0.6D;
|
|
|
|
- this.setSprinting(false);
|
|
|
|
+ // Paper start - Configuration option to disable automatic sprint interruption
|
|
|
|
+ if (!world.paperConfig.disableSprintInterruptionOnAttack) {
|
|
|
|
+ this.setSprinting(false);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag3) {
|
|
|
|
--
|
2018-06-30 07:40:52 +02:00
|
|
|
2.18.0
|
2018-04-18 15:46:48 +02:00
|
|
|
|