Added SpawnReason.SLIME_SPLIT, Fixes BUKKIT-790

This commit is contained in:
feildmaster 2012-04-14 01:38:22 -05:00
parent 1dcb39074d
commit e17d3ece00

View File

@ -157,7 +157,7 @@ public class EntitySlime extends EntityLiving implements IMonster {
entityslime.setSize(i / 2);
entityslime.setPositionRotation(this.locX + (double) f, this.locY + 0.5D, this.locZ + (double) f1, this.random.nextFloat() * 360.0F, 0.0F);
this.world.addEntity(entityslime);
this.world.addEntity(entityslime, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.SLIME_SPLIT); // CraftBukkit - SpawnReason
}
}