3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-18 05:50:04 +01:00
Paper/src/main/java/net/minecraft/server/ItemFlintAndSteel.java

92 Zeilen
2.7 KiB
Java

package net.minecraft.server;
// CraftBukkit start
import org.bukkit.block.BlockFace;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.craftbukkit.CraftWorld;
import org.bukkit.craftbukkit.block.CraftBlock;
import org.bukkit.craftbukkit.inventory.CraftItemStack;
import org.bukkit.entity.Player;
import org.bukkit.event.Event.Type;
import org.bukkit.event.player.PlayerItemEvent;
import org.bukkit.event.block.BlockIgniteEvent;
import org.bukkit.event.block.BlockIgniteEvent.IgniteCause;
// CraftBukkit end
public class ItemFlintAndSteel extends Item {
public ItemFlintAndSteel(int i) {
super(i);
2011-01-29 22:50:29 +01:00
this.maxStackSize = 1;
this.durability = 64;
}
2011-01-29 22:50:29 +01:00
public boolean a(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
// CraftBukkit start - store the clicked block
CraftWorld craftWorld = ((WorldServer) world).getWorld();
CraftServer craftServer = ((WorldServer) world).getServer();
org.bukkit.block.Block blockClicked = craftWorld.getBlockAt(i, j, k);
2011-01-29 22:50:29 +01:00
// CraftBukkit end
if (l == 0) {
2011-01-29 22:50:29 +01:00
--j;
}
2011-01-29 22:50:29 +01:00
if (l == 1) {
2011-01-29 22:50:29 +01:00
++j;
}
2011-01-29 22:50:29 +01:00
if (l == 2) {
2011-01-29 22:50:29 +01:00
--k;
}
2011-01-29 22:50:29 +01:00
if (l == 3) {
2011-01-29 22:50:29 +01:00
++k;
}
2011-01-29 22:50:29 +01:00
if (l == 4) {
2011-01-29 22:50:29 +01:00
--i;
}
2011-01-29 22:50:29 +01:00
if (l == 5) {
2011-01-29 22:50:29 +01:00
++i;
}
2011-01-29 22:50:29 +01:00
int i1 = world.getTypeId(i, j, k);
if (i1 == 0) {
// CraftBukkit start - Flint and steel
Type eventType = Type.PLAYER_ITEM;
2011-01-29 22:50:29 +01:00
Player thePlayer = (Player) entityhuman.getBukkitEntity();
CraftItemStack itemInHand = new CraftItemStack(itemstack);
BlockFace blockFace = CraftBlock.notchToBlockFace(l);
2011-01-29 22:50:29 +01:00
PlayerItemEvent event = new PlayerItemEvent(eventType, thePlayer, itemInHand, blockClicked, blockFace);
craftServer.getPluginManager().callEvent(event);
boolean preventLighter = event.isCancelled();
2011-01-29 22:50:29 +01:00
IgniteCause igniteCause = BlockIgniteEvent.IgniteCause.FLINT_AND_STEEL;
BlockIgniteEvent eventIgnite = new BlockIgniteEvent(blockClicked, igniteCause, thePlayer);
craftServer.getPluginManager().callEvent(eventIgnite);
boolean preventFire = eventIgnite.isCancelled();
if (preventLighter) {
return false;
}
2011-01-29 22:50:29 +01:00
if (preventFire) {
itemstack.b(1);
return false;
}
// CraftBukkit end
world.a((double) i + 0.5D, (double) j + 0.5D, (double) k + 0.5D, "fire.ignite", 1.0F, b.nextFloat() * 0.4F + 0.8F);
2011-01-29 22:50:29 +01:00
world.e(i, j, k, Block.FIRE.id);
}
2011-01-29 22:50:29 +01:00
itemstack.b(1);
return true;
}
}