summaryrefslogtreecommitdiffstats
path: root/nms-patches/ItemMonsterEgg.patch
blob: a53df16bbc3e21e6011457989a7b2fcb41addfcf (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
--- ../work/decompile-8eb82bde//net/minecraft/server/ItemMonsterEgg.java	2014-12-03 10:52:09.804159084 +0000
+++ src/main/java/net/minecraft/server/ItemMonsterEgg.java	2014-12-03 10:51:53.380159449 +0000
@@ -19,7 +19,8 @@
     }
 
     public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, BlockPosition blockposition, EnumDirection enumdirection, float f, float f1, float f2) {
-        if (world.isStatic) {
+        // CraftBukkit - check ItemStack data
+        if (world.isStatic || itemstack.getData() == 48 || itemstack.getData() == 49 || itemstack.getData() == 63 || itemstack.getData() == 64) {
             return true;
         } else if (!entityhuman.a(blockposition.shift(enumdirection), enumdirection, itemstack)) {
             return false;
@@ -109,6 +110,12 @@
     }
 
     public static Entity a(World world, int i, double d0, double d1, double d2) {
+        // CraftBukkit start - delegate to spawnCreature
+        return spawnCreature(world, i, d0, d1, d2, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.SPAWNER_EGG);
+    }
+
+    public static Entity spawnCreature(World world, int i, double d0, double d1, double d2, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason spawnReason) {
+        // CraftBukkit end
         if (!EntityTypes.eggInfo.containsKey(Integer.valueOf(i))) {
             return null;
         } else {
@@ -123,7 +130,7 @@
                     entityinsentient.aI = entityinsentient.yaw;
                     entityinsentient.aG = entityinsentient.yaw;
                     entityinsentient.prepare(world.E(new BlockPosition(entityinsentient)), (GroupDataEntity) null);
-                    world.addEntity(entity);
+                    world.addEntity(entity, spawnReason); // CraftBukkit
                     entityinsentient.x();
                 }
             }