parent
89aa04f9ed
commit
1ae07ecf52
2 changed files with 106 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
|||
From 26b6ff3f923bd7ff541cfc78312596986fdee0c1 Mon Sep 17 00:00:00 2001
|
||||
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
||||
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 42cf95e1..5921c952 100644
|
||||
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
||||
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
||||
@@ -385,5 +385,19 @@ public interface LivingEntity extends Attributable, Entity, Damageable, Projecti
|
||||
* @param arrows Number of arrows to stick in this entity
|
||||
*/
|
||||
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
|
||||
}
|
||||
--
|
||||
2.11.0
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue