geforkt von Mirrors/Paper
80 Zeilen
2.6 KiB
Java
80 Zeilen
2.6 KiB
Java
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) {
|
|
int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
|
|
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;
|
|
}
|
|
|
|
CraftBlockState blockState = CraftBlockState.getBlockState(world, i, j, k);
|
|
// 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);
|
|
|
|
// CraftBukkit start
|
|
org.bukkit.event.block.BlockPlaceEvent placeEvent = CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockState, clickedX, clickedY, clickedZ);
|
|
|
|
if (placeEvent.isCancelled() || !placeEvent.canBuild()) {
|
|
placeEvent.getBlockPlaced().setTypeIdAndData(0, (byte) 0, false);
|
|
return false;
|
|
}
|
|
// CraftBukkit end
|
|
}
|
|
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
|
--itemstack.count;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|