aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0317-Add-ThrownEggHatchEvent.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0317-Add-ThrownEggHatchEvent.patch')
-rw-r--r--patches/server/0317-Add-ThrownEggHatchEvent.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/patches/server/0317-Add-ThrownEggHatchEvent.patch b/patches/server/0317-Add-ThrownEggHatchEvent.patch
new file mode 100644
index 0000000000..21fd12f380
--- /dev/null
+++ b/patches/server/0317-Add-ThrownEggHatchEvent.patch
@@ -0,0 +1,26 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: William Blake Galbreath <[email protected]>
+Date: Sun, 9 Feb 2020 00:19:05 -0600
+Subject: [PATCH] Add ThrownEggHatchEvent
+
+Adds a new event similar to PlayerEggThrowEvent, but without the Player requirement
+(dispensers can throw eggs to hatch them, too).
+
+diff --git a/src/main/java/net/minecraft/world/entity/projectile/ThrownEgg.java b/src/main/java/net/minecraft/world/entity/projectile/ThrownEgg.java
+index 62850e899955732afdd255ea1e55fc84b7c6c96b..dbd60cc8c39f5d2d4c77e2de4f2567e7fa456cd2 100644
+--- a/src/main/java/net/minecraft/world/entity/projectile/ThrownEgg.java
++++ b/src/main/java/net/minecraft/world/entity/projectile/ThrownEgg.java
+@@ -86,6 +86,13 @@ public class ThrownEgg extends ThrowableItemProjectile {
+ }
+ }
+ // CraftBukkit end
++ // Paper start - Add ThrownEggHatchEvent
++ com.destroystokyo.paper.event.entity.ThrownEggHatchEvent event = new com.destroystokyo.paper.event.entity.ThrownEggHatchEvent((org.bukkit.entity.Egg) getBukkitEntity(), hatching, b0, hatchingType);
++ event.callEvent();
++ hatching = event.isHatching();
++ b0 = hatching ? event.getNumHatches() : 0; // If hatching is set to false, ensure child count is 0
++ hatchingType = event.getHatchingType();
++ // Paper end - Add ThrownEggHatchEvent
+
+ for (int i = 0; i < b0; ++i) {
+ Entity entitychicken = this.level().getWorld().makeEntity(new org.bukkit.Location(this.level().getWorld(), this.getX(), this.getY(), this.getZ(), this.getYRot(), 0.0F), hatchingType.getEntityClass()); // CraftBukkit