Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-21 14:00:11 +01:00
77 Zeilen
2.1 KiB
Java
77 Zeilen
2.1 KiB
Java
package net.minecraft.server;
|
|
|
|
// CraftBukkit start
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.block.BlockIgniteEvent;
|
|
// CraftBukkit end
|
|
|
|
public class ItemFireball extends Item {
|
|
|
|
public ItemFireball(int i) {
|
|
super(i);
|
|
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.e(i, j, k)) {
|
|
return false;
|
|
} else {
|
|
int i1 = world.getTypeId(i, j, k);
|
|
|
|
if (i1 == 0) {
|
|
// CraftBukkit start
|
|
org.bukkit.block.Block blockClicked = world.getWorld().getBlockAt(i, j, k);
|
|
Player thePlayer = (Player) entityhuman.getBukkitEntity();
|
|
|
|
BlockIgniteEvent eventIgnite = new BlockIgniteEvent(blockClicked, BlockIgniteEvent.IgniteCause.FIREBALL, thePlayer);
|
|
world.getServer().getPluginManager().callEvent(eventIgnite);
|
|
|
|
if (eventIgnite.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, d.nextFloat() * 0.4F + 0.8F);
|
|
world.setTypeId(i, j, k, Block.FIRE.id);
|
|
}
|
|
|
|
if (!entityhuman.abilities.canInstantlyBuild) {
|
|
--itemstack.count;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
}
|