summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/ItemFireball.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/minecraft/server/ItemFireball.java')
-rw-r--r--src/main/java/net/minecraft/server/ItemFireball.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/src/main/java/net/minecraft/server/ItemFireball.java b/src/main/java/net/minecraft/server/ItemFireball.java
deleted file mode 100644
index 0a3bf131..00000000
--- a/src/main/java/net/minecraft/server/ItemFireball.java
+++ /dev/null
@@ -1,67 +0,0 @@
-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;
- }
- }
- }
-}