summaryrefslogtreecommitdiffstats
path: root/nms-patches/ItemFireball.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/ItemFireball.patch')
-rw-r--r--nms-patches/ItemFireball.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/nms-patches/ItemFireball.patch b/nms-patches/ItemFireball.patch
index dc040d9f..6cf934f3 100644
--- a/nms-patches/ItemFireball.patch
+++ b/nms-patches/ItemFireball.patch
@@ -1,17 +1,17 @@
--- a/net/minecraft/server/ItemFireball.java
+++ b/net/minecraft/server/ItemFireball.java
@@ -15,6 +15,14 @@
- return false;
+ return EnumInteractionResult.FAIL;
} else {
- if (world.getType(blockposition).getBlock().getMaterial() == Material.AIR) {
+ if (world.getType(blockposition).getMaterial() == Material.AIR) {
+ // CraftBukkit start - fire BlockIgniteEvent
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockIgniteEvent(world, blockposition.getX(), blockposition.getY(), blockposition.getZ(), org.bukkit.event.block.BlockIgniteEvent.IgniteCause.FIREBALL, entityhuman).isCancelled()) {
+ if (!entityhuman.abilities.canInstantlyBuild) {
+ --itemstack.count;
+ }
-+ return false;
++ return EnumInteractionResult.PASS;
+ }
+ // CraftBukkit end
- world.makeSound((double) blockposition.getX() + 0.5D, (double) blockposition.getY() + 0.5D, (double) blockposition.getZ() + 0.5D, "item.fireCharge.use", 1.0F, (ItemFireball.g.nextFloat() - ItemFireball.g.nextFloat()) * 0.2F + 1.0F);
+ world.a((EntityHuman) null, blockposition, SoundEffects.bl, SoundCategory.BLOCKS, 1.0F, (ItemFireball.i.nextFloat() - ItemFireball.i.nextFloat()) * 0.2F + 1.0F);
world.setTypeUpdate(blockposition, Blocks.FIRE.getBlockData());
}