aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0107-Make-shield-blocking-delay-configurable.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/api/0107-Make-shield-blocking-delay-configurable.patch')
-rw-r--r--patches/api/0107-Make-shield-blocking-delay-configurable.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/patches/api/0107-Make-shield-blocking-delay-configurable.patch b/patches/api/0107-Make-shield-blocking-delay-configurable.patch
new file mode 100644
index 0000000000..e6c6e635ca
--- /dev/null
+++ b/patches/api/0107-Make-shield-blocking-delay-configurable.patch
@@ -0,0 +1,30 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: BillyGalbreath <[email protected]>
+Date: Sat, 16 Jun 2018 01:17:39 -0500
+Subject: [PATCH] Make shield blocking delay configurable
+
+
+diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java
+index f154c5607b1dc3585052d9f02cf8b28cf8a3c886..7b53064364e206bc1a0f4b7af4931f6c658b7c55 100644
+--- a/src/main/java/org/bukkit/entity/LivingEntity.java
++++ b/src/main/java/org/bukkit/entity/LivingEntity.java
+@@ -837,5 +837,19 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
+ */
+ @Deprecated
+ void setArrowsStuck(int arrows);
++
++ /**
++ * Get the delay (in ticks) before blocking is effective for this entity
++ *
++ * @return Delay in ticks
++ */
++ int getShieldBlockingDelay();
++
++ /**
++ * Set the delay (in ticks) before blocking is effective for this entity
++ *
++ * @param delay Delay in ticks
++ */
++ void setShieldBlockingDelay(int delay);
+ // Paper end
+ }