2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: William Blake Galbreath <blake.galbreath@gmail.com>
|
|
|
|
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
|
2021-06-14 00:05:18 +02:00
|
|
|
index 4e083dcd07e5975c7379035e72ac2f3469e919fd..77941e3981e49cf5662b3e3c86a9c419080b17c8 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/projectile/ThrownEgg.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/projectile/ThrownEgg.java
|
2021-06-14 00:05:18 +02:00
|
|
|
@@ -77,6 +77,14 @@ public class ThrownEgg extends ThrowableItemProjectile {
|
2021-06-11 14:02:28 +02:00
|
|
|
hatchingType = event.getHatchingType();
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ com.destroystokyo.paper.event.entity.ThrownEggHatchEvent event = new com.destroystokyo.paper.event.entity.ThrownEggHatchEvent((org.bukkit.entity.Egg) getBukkitEntity(), hatching, b0, hatchingType);
|
|
|
|
+ event.callEvent();
|
|
|
|
+
|
|
|
|
+ b0 = event.getNumHatches();
|
|
|
|
+ hatching = event.isHatching();
|
|
|
|
+ hatchingType = event.getHatchingType();
|
|
|
|
+ // Paper end
|
|
|
|
if (hatching) {
|
|
|
|
for (int i = 0; i < b0; ++i) {
|
2021-06-14 00:05:18 +02:00
|
|
|
Entity entity = level.getWorld().createEntity(new org.bukkit.Location(level.getWorld(), this.getX(), this.getY(), this.getZ(), this.getYRot(), 0.0F), hatchingType.getEntityClass());
|