3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

Don't spawn conditional mobs if original entity is dead. Fixes BUKKIT-1444

Dieser Commit ist enthalten in:
feildmaster 2012-04-03 18:00:07 -05:00
Ursprung af0018a962
Commit 20dea920c2

Datei anzeigen

@ -201,6 +201,7 @@ public final class SpawnerCreature {
}
private static void a(EntityLiving entityliving, World world, float f, float f1, float f2) {
if (entityliving.dead) return; // CraftBukkit
if (entityliving instanceof EntitySpider && world.random.nextInt(100) == 0) {
EntitySkeleton entityskeleton = new EntitySkeleton(world);