2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 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
|
2020-11-12 05:58:42 +01:00
|
|
|
index 0c8160aa7098f117d2a174ffd944741b11818d10..de80d2d874d1787335fd393f3ffed0cd36e3af9e 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
|
2020-11-12 05:58:42 +01:00
|
|
|
@@ -363,4 +363,9 @@ public class PaperWorldConfig {
|
2019-04-30 03:20:24 +02:00
|
|
|
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
|
2020-12-22 22:02:19 +01:00
|
|
|
index 1e49b2c84d9b35367a9bc89be0c606293b42f2c8..58c9ccb55ca727709ada59d0978ef9470a9df97a 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
|
2020-12-22 22:02:19 +01:00
|
|
|
@@ -3211,7 +3211,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();
|
|
|
|
|
2020-08-25 04:22:08 +02:00
|
|
|
- return item.d_(this.activeItem) != EnumAnimation.BLOCK ? false : item.e_(this.activeItem) - this.bd >= 5;
|
|
|
|
+ return item.d_(this.activeItem) != EnumAnimation.BLOCK ? false : item.e_(this.activeItem) - this.bd >= getShieldBlockingDelay(); // Paper - shieldBlockingDelay
|
2018-06-16 21:54:35 +02:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2020-12-22 22:02:19 +01:00
|
|
|
@@ -3467,4 +3467,15 @@ public abstract class EntityLiving extends Entity {
|
2020-01-22 03:02:07 +01:00
|
|
|
public void broadcastItemBreak(EnumHand enumhand) {
|
|
|
|
this.broadcastItemBreak(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
|
2020-09-19 13:29:53 +02:00
|
|
|
index e99e8e6f889edfa889619a12f9bfa4bfbde9a5a1..2e146ec4ba0c6db67c558a48ce5ec60bc2ca337f 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
|
2020-09-19 13:29:53 +02:00
|
|
|
@@ -710,5 +710,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
|
|
|
|
}
|