aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0877-Update-entity-data-when-attaching-firework-to-entity.patch
diff options
context:
space:
mode:
authorNassim Jahnke <[email protected]>2024-12-03 20:34:55 +0100
committerNassim Jahnke <[email protected]>2024-12-03 20:46:25 +0100
commit5265287323b5c8c4148659b3630a22db92bb9dc4 (patch)
treea2ba3cfda5cdc85be169518fcf28fdedb373ce18 /patches/server/0877-Update-entity-data-when-attaching-firework-to-entity.patch
parentbd55e322d8cfb8f4d4fed04b38243bc4940fab50 (diff)
downloadPaper-5265287323b5c8c4148659b3630a22db92bb9dc4.tar.gz
Paper-5265287323b5c8c4148659b3630a22db92bb9dc4.zip
More more more more work
Diffstat (limited to 'patches/server/0877-Update-entity-data-when-attaching-firework-to-entity.patch')
-rw-r--r--patches/server/0877-Update-entity-data-when-attaching-firework-to-entity.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/patches/server/0877-Update-entity-data-when-attaching-firework-to-entity.patch b/patches/server/0877-Update-entity-data-when-attaching-firework-to-entity.patch
new file mode 100644
index 0000000000..f2c094976f
--- /dev/null
+++ b/patches/server/0877-Update-entity-data-when-attaching-firework-to-entity.patch
@@ -0,0 +1,23 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: booky10 <[email protected]>
+Date: Sun, 27 Aug 2023 16:11:31 +0200
+Subject: [PATCH] Update entity data when attaching firework to entity
+
+== AT ==
+public net.minecraft.world.entity.projectile.FireworkRocketEntity DATA_ATTACHED_TO_TARGET
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftFirework.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftFirework.java
+index 2d54cf6f3d9696c55335f0a2057025e2034d4e13..759b6e54db93792c9862b1f1625118ac6fa49d7a 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftFirework.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftFirework.java
+@@ -69,6 +69,10 @@ public class CraftFirework extends CraftProjectile implements Firework {
+ }
+
+ this.getHandle().attachedToEntity = (entity != null) ? ((CraftLivingEntity) entity).getHandle() : null;
++ // Paper start - update entity data
++ this.getHandle().getEntityData().set(FireworkRocketEntity.DATA_ATTACHED_TO_TARGET,
++ entity != null ? java.util.OptionalInt.of(entity.getEntityId()) : java.util.OptionalInt.empty());
++ // Paper end - update entity data
+ return true;
+ }
+