mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 18:27:41 +01:00
64cd2b148a
By: DerFrZocker <derrieple@gmail.com>
80 lines
3.5 KiB
Diff
80 lines
3.5 KiB
Diff
--- a/net/minecraft/world/entity/projectile/EntityEgg.java
|
|
+++ b/net/minecraft/world/entity/projectile/EntityEgg.java
|
|
@@ -11,6 +11,16 @@
|
|
import net.minecraft.world.phys.MovingObjectPosition;
|
|
import net.minecraft.world.phys.MovingObjectPositionEntity;
|
|
|
|
+// CraftBukkit start
|
|
+import net.minecraft.server.level.EntityPlayer;
|
|
+import net.minecraft.world.entity.Entity;
|
|
+import org.bukkit.entity.Ageable;
|
|
+import org.bukkit.entity.EntityType;
|
|
+import org.bukkit.entity.Player;
|
|
+import org.bukkit.event.entity.EntityRemoveEvent;
|
|
+import org.bukkit.event.player.PlayerEggThrowEvent;
|
|
+// CraftBukkit end
|
|
+
|
|
public class EntityEgg extends EntityProjectileThrowable {
|
|
|
|
public EntityEgg(EntityTypes<? extends EntityEgg> entitytypes, World world) {
|
|
@@ -47,26 +57,53 @@
|
|
protected void onHit(MovingObjectPosition movingobjectposition) {
|
|
super.onHit(movingobjectposition);
|
|
if (!this.level().isClientSide) {
|
|
- if (this.random.nextInt(8) == 0) {
|
|
+ // CraftBukkit start
|
|
+ boolean hatching = this.random.nextInt(8) == 0;
|
|
+ if (true) {
|
|
+ // CraftBukkit end
|
|
byte b0 = 1;
|
|
|
|
if (this.random.nextInt(32) == 0) {
|
|
b0 = 4;
|
|
}
|
|
|
|
+ // CraftBukkit start
|
|
+ EntityType hatchingType = EntityType.CHICKEN;
|
|
+
|
|
+ Entity shooter = this.getOwner();
|
|
+ if (!hatching) {
|
|
+ b0 = 0;
|
|
+ }
|
|
+ if (shooter instanceof EntityPlayer) {
|
|
+ PlayerEggThrowEvent event = new PlayerEggThrowEvent((Player) shooter.getBukkitEntity(), (org.bukkit.entity.Egg) this.getBukkitEntity(), hatching, b0, hatchingType);
|
|
+ this.level().getCraftServer().getPluginManager().callEvent(event);
|
|
+
|
|
+ b0 = event.getNumHatches();
|
|
+ hatching = event.isHatching();
|
|
+ hatchingType = event.getHatchingType();
|
|
+ // If hatching is set to false, ensure child count is 0
|
|
+ if (!hatching) {
|
|
+ b0 = 0;
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
+
|
|
for (int i = 0; i < b0; ++i) {
|
|
- EntityChicken entitychicken = (EntityChicken) EntityTypes.CHICKEN.create(this.level());
|
|
+ Entity entitychicken = this.level().getWorld().makeEntity(new org.bukkit.Location(this.level().getWorld(), this.getX(), this.getY(), this.getZ(), this.getYRot(), 0.0F), hatchingType.getEntityClass()); // CraftBukkit
|
|
|
|
if (entitychicken != null) {
|
|
- entitychicken.setAge(-24000);
|
|
- entitychicken.moveTo(this.getX(), this.getY(), this.getZ(), this.getYRot(), 0.0F);
|
|
- this.level().addFreshEntity(entitychicken);
|
|
+ // CraftBukkit start
|
|
+ if (entitychicken.getBukkitEntity() instanceof Ageable) {
|
|
+ ((Ageable) entitychicken.getBukkitEntity()).setBaby();
|
|
+ }
|
|
+ this.level().addFreshEntity(entitychicken, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.EGG);
|
|
+ // CraftBukkit end
|
|
}
|
|
}
|
|
}
|
|
|
|
this.level().broadcastEntityEvent(this, (byte) 3);
|
|
- this.discard();
|
|
+ this.discard(EntityRemoveEvent.Cause.HIT); // CraftBukkit - add Bukkit remove cause
|
|
}
|
|
|
|
}
|