aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0229-Make-shield-blocking-delay-configurable.patch
diff options
context:
space:
mode:
authorAikar <[email protected]>2020-06-23 20:25:28 -0400
committerAikar <[email protected]>2020-06-23 20:28:43 -0400
commitec9fa36908090f19f99bcd326cec856245c887dd (patch)
tree65f7e535505e7b8e5b88f1d646f26dfffb999f20 /Spigot-Server-Patches/0229-Make-shield-blocking-delay-configurable.patch
parent70df8f27161f86ffeedb5924b66a82f4499f201d (diff)
downloadPaper-ec9fa36908090f19f99bcd326cec856245c887dd.tar.gz
Paper-ec9fa36908090f19f99bcd326cec856245c887dd.zip
1.15.2 - Updated Upstream (Bukkit/CraftBukkit)
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 149527f7 SPIGOT-5782: Set Arrow Launched From Crossbow CraftBukkit Changes: be6aaf04 SPIGOT-5782: Set Arrow Launched From Crossbow 833da9c4 SPIGOT-5799: InventoryCloseEvent fires after PlayerQuitEvent 26c0084f SPIGOT-5675, SPIGOT-5798, MC-149563: Fix tracking of entities across dimensions 7f3e7c3f SPIGOT-5797: Zombie(Villagers) Instant Convert based on their lifetime
Diffstat (limited to 'Spigot-Server-Patches/0229-Make-shield-blocking-delay-configurable.patch')
-rw-r--r--Spigot-Server-Patches/0229-Make-shield-blocking-delay-configurable.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/Spigot-Server-Patches/0229-Make-shield-blocking-delay-configurable.patch b/Spigot-Server-Patches/0229-Make-shield-blocking-delay-configurable.patch
index d1a7968a4f..84c8cf61a9 100644
--- a/Spigot-Server-Patches/0229-Make-shield-blocking-delay-configurable.patch
+++ b/Spigot-Server-Patches/0229-Make-shield-blocking-delay-configurable.patch
@@ -19,10 +19,10 @@ index 9c52e31f4cf1e64a37c65c021da219fc26dda137..33ce9a500430a01650e69a3568c8b03d
+ }
}
diff --git a/src/main/java/net/minecraft/server/EntityLiving.java b/src/main/java/net/minecraft/server/EntityLiving.java
-index c5c0fc3877fa6c8602e4468d5702612d986891f9..8f6fe004a40b693d1a9945dcab0625c5e9346c01 100644
+index f5da67fd8908f027835b837a8b847e27c3638790..1a1d608f5acfc92e3e55e53f63c9da6ab0aa6a0a 100644
--- a/src/main/java/net/minecraft/server/EntityLiving.java
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
-@@ -3001,7 +3001,7 @@ public abstract class EntityLiving extends Entity {
+@@ -3002,7 +3002,7 @@ public abstract class EntityLiving extends Entity {
if (this.isHandRaised() && !this.activeItem.isEmpty()) {
Item item = this.activeItem.getItem();
@@ -31,7 +31,7 @@ index c5c0fc3877fa6c8602e4468d5702612d986891f9..8f6fe004a40b693d1a9945dcab0625c5
} else {
return false;
}
-@@ -3240,4 +3240,15 @@ public abstract class EntityLiving extends Entity {
+@@ -3241,4 +3241,15 @@ public abstract class EntityLiving extends Entity {
public void broadcastItemBreak(EnumHand enumhand) {
this.broadcastItemBreak(enumhand == EnumHand.MAIN_HAND ? EnumItemSlot.MAINHAND : EnumItemSlot.OFFHAND);
}