2019-05-22 06:14:56 +02:00
|
|
|
From 826ed7c578e0407b493c1c1785164b47c705aa98 Mon Sep 17 00:00:00 2001
|
2018-06-16 21:54:35 +02:00
|
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Sat, 16 Jun 2018 01:18:16 -0500
|
|
|
|
Subject: [PATCH] Make shield blocking delay configurable
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-05-22 06:14:56 +02:00
|
|
|
index fe9415b1de..ce17447faf 100644
|
2018-06-16 21:54:35 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-04-30 03:20:24 +02:00
|
|
|
@@ -365,4 +365,9 @@ public class PaperWorldConfig {
|
|
|
|
disableEnderpearlExploit = getBoolean("game-mechanics.disable-unloaded-chunk-enderpearl-exploit", disableEnderpearlExploit);
|
|
|
|
log("Disable Unloaded Chunk Enderpearl Exploit: " + (disableEnderpearlExploit ? "enabled" : "disabled"));
|
2018-06-16 21:54:35 +02:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int shieldBlockingDelay = 5;
|
|
|
|
+ private void shieldBlockingDelay() {
|
|
|
|
+ shieldBlockingDelay = getInt("game-mechanics.shield-blocking-delay", 5);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityLiving.java b/src/main/java/net/minecraft/server/EntityLiving.java
|
2019-05-22 06:14:56 +02:00
|
|
|
index 8642040786..be60f35de1 100644
|
2018-06-16 21:54:35 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
|
2019-04-30 03:20:24 +02:00
|
|
|
@@ -2915,7 +2915,7 @@ public abstract class EntityLiving extends Entity {
|
2018-06-16 21:54:35 +02:00
|
|
|
if (this.isHandRaised() && !this.activeItem.isEmpty()) {
|
|
|
|
Item item = this.activeItem.getItem();
|
|
|
|
|
2019-04-30 03:20:24 +02:00
|
|
|
- return item.e_(this.activeItem) != EnumAnimation.BLOCK ? false : item.f_(this.activeItem) - this.bo >= 5;
|
|
|
|
+ return item.e_(this.activeItem) != EnumAnimation.BLOCK ? false : item.f_(this.activeItem) - this.bo >= getShieldBlockingDelay(); // Paper - shieldBlockingDelay
|
2018-06-16 21:54:35 +02:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2019-04-30 03:20:24 +02:00
|
|
|
@@ -3151,4 +3151,15 @@ public abstract class EntityLiving extends Entity {
|
|
|
|
public void d(EnumHand enumhand) {
|
|
|
|
this.c(enumhand == EnumHand.MAIN_HAND ? EnumItemSlot.MAINHAND : EnumItemSlot.OFFHAND);
|
2018-06-16 21:54:35 +02:00
|
|
|
}
|
|
|
|
+ // Paper start
|
|
|
|
+ public int shieldBlockingDelay = world.paperConfig.shieldBlockingDelay;
|
|
|
|
+
|
|
|
|
+ public int getShieldBlockingDelay() {
|
|
|
|
+ return shieldBlockingDelay;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setShieldBlockingDelay(int shieldBlockingDelay) {
|
|
|
|
+ this.shieldBlockingDelay = shieldBlockingDelay;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2019-05-22 06:14:56 +02:00
|
|
|
index 42cc158824..513b3fac7f 100644
|
2018-06-16 21:54:35 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2019-05-22 06:14:56 +02:00
|
|
|
@@ -619,5 +619,15 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
2018-06-16 21:54:35 +02:00
|
|
|
public void setArrowsStuck(int arrows) {
|
|
|
|
getHandle().setArrowCount(arrows);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public int getShieldBlockingDelay() {
|
|
|
|
+ return getHandle().getShieldBlockingDelay();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setShieldBlockingDelay(int delay) {
|
|
|
|
+ getHandle().setShieldBlockingDelay(delay);
|
|
|
|
+ }
|
|
|
|
// Paper end
|
|
|
|
}
|
|
|
|
--
|
2019-03-20 02:46:00 +01:00
|
|
|
2.21.0
|
2018-06-16 21:54:35 +02:00
|
|
|
|