Paper/src/main/java/net/minecraft/server/ItemFireball.java

63 Zeilen
1.8 KiB
Java

package net.minecraft.server;
public class ItemFireball extends Item {
2013-11-04 14:07:38 +01:00
public ItemFireball() {
2012-07-29 09:33:13 +02:00
this.a(CreativeModeTab.f);
}
2012-07-29 09:33:13 +02:00
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 {
2013-11-04 14:07:38 +01:00
if (world.getType(i, j, k).getMaterial() == Material.AIR) {
// CraftBukkit start
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
2013-11-04 14:07:38 +01:00
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;
}
}
}
}