package net.minecraft.server; // CraftBukkit start import org.bukkit.craftbukkit.block.CraftBlockState; import org.bukkit.craftbukkit.event.CraftEventFactory; // CraftBukkit end public class ItemFireball extends Item { public ItemFireball() { this.a(CreativeModeTab.f); } public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l, float f, float f1, float f2) { if (world.isStatic) { return true; } else { if (l == 0) { --j; } if (l == 1) { ++j; } if (l == 2) { --k; } if (l == 3) { ++k; } if (l == 4) { --i; } if (l == 5) { ++i; } if (!entityhuman.a(i, j, k, l, itemstack)) { return false; } else { if (world.getType(i, j, k).getMaterial() == Material.AIR) { // CraftBukkit start - fire BlockIgniteEvent if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockIgniteEvent(world, i, j, k, org.bukkit.event.block.BlockIgniteEvent.IgniteCause.FIREBALL, entityhuman).isCancelled()) { if (!entityhuman.abilities.canInstantlyBuild) { --itemstack.count; } return false; } // CraftBukkit end world.makeSound((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "fire.ignite", 1.0F, g.nextFloat() * 0.4F + 0.8F); world.setTypeUpdate(i, j, k, Blocks.FIRE); } if (!entityhuman.abilities.canInstantlyBuild) { --itemstack.count; } return true; } } } }