@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user