summaryrefslogtreecommitdiffstats
path: root/nms-patches/ItemMonsterEgg.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/ItemMonsterEgg.patch')
-rw-r--r--nms-patches/ItemMonsterEgg.patch17
1 files changed, 9 insertions, 8 deletions
diff --git a/nms-patches/ItemMonsterEgg.patch b/nms-patches/ItemMonsterEgg.patch
index cd535c79..95d75a29 100644
--- a/nms-patches/ItemMonsterEgg.patch
+++ b/nms-patches/ItemMonsterEgg.patch
@@ -1,19 +1,20 @@
--- a/net/minecraft/server/ItemMonsterEgg.java
+++ b/net/minecraft/server/ItemMonsterEgg.java
-@@ -131,6 +131,10 @@
+@@ -153,6 +153,11 @@
@Nullable
- public static Entity a(World world, @Nullable String s, double d0, double d1, double d2) {
-+ return spawnCreature(world, s, d0, d1, d2, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.SPAWNER_EGG);
+ public static Entity a(World world, @Nullable MinecraftKey minecraftkey, double d0, double d1, double d2) {
++ return spawnCreature(world, minecraftkey, d0, d1, d2, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.SPAWNER_EGG);
+ }
+
-+ public static Entity spawnCreature(World world, String s, double d0, double d1, double d2, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason spawnReason) {
- if (s != null && EntityTypes.eggInfo.containsKey(s)) {
++ @Nullable
++ public static Entity spawnCreature(World world, @Nullable MinecraftKey minecraftkey, double d0, double d1, double d2, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason spawnReason) {
+ if (minecraftkey != null && EntityTypes.eggInfo.containsKey(minecraftkey)) {
Entity entity = null;
-@@ -143,8 +147,13 @@
- entityinsentient.aQ = entityinsentient.yaw;
- entityinsentient.aO = entityinsentient.yaw;
+@@ -165,8 +170,13 @@
+ entityinsentient.aP = entityinsentient.yaw;
+ entityinsentient.aN = entityinsentient.yaw;
entityinsentient.prepare(world.D(new BlockPosition(entityinsentient)), (GroupDataEntity) null);
- world.addEntity(entity);
- entityinsentient.D();