summaryrefslogtreecommitdiffstats
path: root/nms-patches/EntityEgg.patch
blob: de81882486b7a915e2455bd631c8426b6afe9c44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
--- a/net/minecraft/server/EntityEgg.java
+++ b/net/minecraft/server/EntityEgg.java
@@ -1,5 +1,12 @@
 package net.minecraft.server;
 
+// CraftBukkit start
+import org.bukkit.entity.Ageable;
+import org.bukkit.entity.EntityType;
+import org.bukkit.entity.Player;
+import org.bukkit.event.player.PlayerEggThrowEvent;
+// CraftBukkit end
+
 public class EntityEgg extends EntityProjectile {
 
     public EntityEgg(World world) {
@@ -23,21 +30,37 @@
             movingobjectposition.entity.damageEntity(DamageSource.projectile(this, this.getShooter()), 0.0F);
         }
 
-        if (!this.world.isClientSide && this.random.nextInt(8) == 0) {
-            byte b0 = 1;
+        // CraftBukkit start - Fire PlayerEggThrowEvent
+        boolean hatching = !this.world.isClientSide && this.random.nextInt(8) == 0;
+        int numHatching = (this.random.nextInt(32) == 0) ? 4 : 1;
+        if (!hatching) {
+            numHatching = 0;
+        }
+
+        EntityType hatchingType = EntityType.CHICKEN;
+
+        Entity shooter = this.getShooter();
+        if (shooter instanceof EntityPlayer) {
+            Player player = (shooter == null) ? null : (Player) shooter.getBukkitEntity();
+
+            PlayerEggThrowEvent event = new PlayerEggThrowEvent(player, (org.bukkit.entity.Egg) this.getBukkitEntity(), hatching, (byte) numHatching, hatchingType);
+            this.world.getServer().getPluginManager().callEvent(event);
+
+            hatching = event.isHatching();
+            numHatching = event.getNumHatches();
+            hatchingType = event.getHatchingType();
+        }
 
-            if (this.random.nextInt(32) == 0) {
-                b0 = 4;
-            }
-
-            for (int i = 0; i < b0; ++i) {
-                EntityChicken entitychicken = new EntityChicken(this.world);
-
-                entitychicken.setAgeRaw(-24000);
-                entitychicken.setPositionRotation(this.locX, this.locY, this.locZ, this.yaw, 0.0F);
-                this.world.addEntity(entitychicken);
-            }
+        if (hatching) {
+            for (int k = 0; k < numHatching; k++) {
+                Entity entity = world.getWorld().createEntity(new org.bukkit.Location(world.getWorld(), this.locX, this.locY, this.locZ, this.yaw, 0.0F), hatchingType.getEntityClass());
+                if (entity.getBukkitEntity() instanceof Ageable) {
+                    ((Ageable) entity.getBukkitEntity()).setBaby();
+                }
+                world.getWorld().addEntity(entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.EGG);
+             }
         }
+        // CraftBukkit end
 
         double d0 = 0.08D;