summaryrefslogtreecommitdiffstats
path: root/nms-patches/ItemBow.patch
blob: 9f8c9f513f38666e4cf262a1725e239cfdd59c21 (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
--- ../work/decompile-bb26c12b/net/minecraft/server/ItemBow.java	2014-11-27 08:59:46.773421530 +1100
+++ src/main/java/net/minecraft/server/ItemBow.java	2014-11-27 08:42:10.140850934 +1100
@@ -1,5 +1,7 @@
 package net.minecraft.server;
 
+import org.bukkit.event.entity.EntityCombustEvent; // CraftBukkit
+
 public class ItemBow extends Item {
 
     public static final String[] a = new String[] { "pulling_0", "pulling_1", "pulling_2"};
@@ -45,9 +47,28 @@
             }
 
             if (EnchantmentManager.getEnchantmentLevel(Enchantment.ARROW_FIRE.id, itemstack) > 0) {
-                entityarrow.setOnFire(100);
+                // CraftBukkit start - call EntityCombustEvent
+                EntityCombustEvent event = new EntityCombustEvent(entityarrow.getBukkitEntity(), 100);
+                entityarrow.world.getServer().getPluginManager().callEvent(event);
+
+                if (!event.isCancelled()) {
+                    entityarrow.setOnFire(event.getDuration());
+                }
+                // CraftBukkit end
+            }
+
+            // CraftBukkit start
+            org.bukkit.event.entity.EntityShootBowEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callEntityShootBowEvent(entityhuman, itemstack, entityarrow, f);
+            if (event.isCancelled()) {
+                event.getProjectile().remove();
+                return;
             }
 
+            if (event.getProjectile() == entityarrow.getBukkitEntity()) {
+                world.addEntity(entityarrow);
+            }
+            // CraftBukkit end
+
             itemstack.damage(1, entityhuman);
             world.makeSound(entityhuman, "random.bow", 1.0F, 1.0F / (ItemBow.g.nextFloat() * 0.4F + 1.2F) + f * 0.5F);
             if (flag) {
@@ -58,7 +79,7 @@
 
             entityhuman.b(StatisticList.USE_ITEM_COUNT[Item.getId(this)]);
             if (!world.isStatic) {
-                world.addEntity(entityarrow);
+                // world.addEntity(entityarrow); // CraftBukkit - moved up
             }
         }