2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/MobSpawnerAbstract.java
|
|
|
|
+++ b/net/minecraft/server/MobSpawnerAbstract.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -41,6 +41,7 @@
|
2017-08-08 04:46:59 +02:00
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
public void setMobName(EntityTypes<?> entitytypes) {
|
2018-08-26 04:00:00 +02:00
|
|
|
this.spawnData.b().setString("id", IRegistry.ENTITY_TYPE.getKey(entitytypes).toString());
|
2018-07-15 02:00:00 +02:00
|
|
|
+ this.mobs.clear(); // CraftBukkit - SPIGOT-3496, MC-92282
|
2017-08-08 04:46:59 +02:00
|
|
|
}
|
2018-07-15 02:00:00 +02:00
|
|
|
|
|
|
|
private boolean h() {
|
|
|
|
@@ -110,7 +111,7 @@
|
|
|
|
((EntityInsentient) entity).prepare(world.getDamageScaler(new BlockPosition(entity)), (GroupDataEntity) null, (NBTTagCompound) null);
|
2016-02-29 22:32:46 +01:00
|
|
|
}
|
|
|
|
|
2018-07-15 02:00:00 +02:00
|
|
|
- ChunkRegionLoader.a(entity, (GeneratorAccess) world);
|
|
|
|
+ ChunkRegionLoader.a(entity, (GeneratorAccess) world, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.SPAWNER); // CraftBukkit
|
2016-02-29 22:32:46 +01:00
|
|
|
world.triggerEffect(2004, blockposition, 0);
|
|
|
|
if (entityinsentient != null) {
|
|
|
|
entityinsentient.doSpawnEffect();
|