aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0840-Call-missing-BlockDispenseEvent.patch
diff options
context:
space:
mode:
authorSpottedleaf <[email protected]>2024-06-14 10:15:52 -0700
committerSpottedleaf <[email protected]>2024-06-14 10:15:52 -0700
commit38b3182a9062e88959b33b486fbd73ac179f80c0 (patch)
tree7d6fcfdc84fc70dc76cf4ad5f84a7e9cf83827b2 /patches/server/0840-Call-missing-BlockDispenseEvent.patch
parent66f7b672ed6c60d9aee49f6dd174126714f4a151 (diff)
downloadPaper-38b3182a9062e88959b33b486fbd73ac179f80c0.tar.gz
Paper-38b3182a9062e88959b33b486fbd73ac179f80c0.zip
Updated Upstream (Bukkit/CraftBukkit)
Upstream has released updates that appear 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: befcf86d SPIGOT-7740: Fix using new map cursor types 09229095 Add EntityDamageEvent.DamageCause#CAMPFIRE CraftBukkit Changes: a1d2cd152 SPIGOT-7747: Mob head is not dropped when mob was blown up by a charged creeper 8078294bc SPIGOT-7746: Server Crashing when Players Getting into End Portals 8d842e250 SPIGOT-7744: Fix exception for shooting projectiles with flame enchantment 64e0ad129 SPIGOT-7744: Fix crash when shooting arrows in creative mode 819f7a10a Fix player items not dropping on death 0a0229bb5 Implement DamageCause#CAMPFIRE and minor improvement in exception for Unhandled block damage
Diffstat (limited to 'patches/server/0840-Call-missing-BlockDispenseEvent.patch')
-rw-r--r--patches/server/0840-Call-missing-BlockDispenseEvent.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/server/0840-Call-missing-BlockDispenseEvent.patch b/patches/server/0840-Call-missing-BlockDispenseEvent.patch
index 3554c7ea2c..97050595b8 100644
--- a/patches/server/0840-Call-missing-BlockDispenseEvent.patch
+++ b/patches/server/0840-Call-missing-BlockDispenseEvent.patch
@@ -50,10 +50,10 @@ index 96db0b1041a4c0f054d4f3f2bdced960b119664e..78951f50188528718cdb3dbbaabe3f9f
for (int k = 0; k < 5; ++k) {
worldserver.sendParticles(ParticleTypes.SPLASH, (double) blockposition.getX() + worldserver.random.nextDouble(), (double) (blockposition.getY() + 1), (double) blockposition.getZ() + worldserver.random.nextDouble(), 1, 0.0D, 0.0D, 0.0D, 1.0D);
diff --git a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
-index 5a6f954e0d01253cf861ae16c6055744d07acdb9..370672a22ce1fdf7eb9708cce8d25e8d0687b07a 100644
+index 214a1b8901947e8c08e8d7fc3f19e866a21350c8..35b6443d15678ec84271dcebf29b98b36df97a6e 100644
--- a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
+++ b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
-@@ -2127,6 +2127,32 @@ public class CraftEventFactory {
+@@ -2129,6 +2129,32 @@ public class CraftEventFactory {
}
// Paper end