2018-12-15 02:17:27 +01:00
|
|
|
From 0741f31ada8315f118a38e97acfcfa5133d30ec7 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
|
2018-12-13 01:40:29 +01:00
|
|
|
index 2033ace4f..875650b8d 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
|
2018-12-13 01:40:29 +01:00
|
|
|
@@ -433,4 +433,9 @@ public class PaperWorldConfig {
|
2018-09-29 18:03:11 +02:00
|
|
|
log("Villages can load chunks - Warning this can cause intense TPS loss. Strongly consider disabling this.");
|
|
|
|
}
|
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
|
2018-12-08 11:09:55 +01:00
|
|
|
index fadf1df28..67ed48652 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
|
2018-12-08 11:09:55 +01:00
|
|
|
@@ -2700,7 +2700,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();
|
|
|
|
|
2018-07-19 01:16:19 +02:00
|
|
|
- return item.d(this.activeItem) != EnumAnimation.BLOCK ? false : item.c(this.activeItem) - this.bu >= 5;
|
|
|
|
+ return item.d(this.activeItem) != EnumAnimation.BLOCK ? false : item.c(this.activeItem) - this.bu >= getShieldBlockingDelay(); // Paper - shieldBlockingDelay
|
2018-06-16 21:54:35 +02:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2018-12-08 11:09:55 +01:00
|
|
|
@@ -2788,4 +2788,16 @@ public abstract class EntityLiving extends Entity {
|
2018-07-22 07:27:46 +02:00
|
|
|
public boolean df() {
|
2018-06-16 21:54:35 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // 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
|
2018-10-27 06:02:22 +02:00
|
|
|
index 2f96842bb..8e65bfc78 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
|
2018-10-27 06:02:22 +02:00
|
|
|
@@ -558,5 +558,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
|
|
|
|
}
|
|
|
|
--
|
2018-12-13 01:40:29 +01:00
|
|
|
2.20.0
|
2018-06-16 21:54:35 +02:00
|
|
|
|