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/ItemRedstone.java

77 Zeilen
2.1 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;
// CraftBukkit end
public class ItemRedstone extends Item {
public ItemRedstone(int i) {
super(i);
}
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
if (!world.isEmpty(i, j, k)) {
return false;
2011-01-29 22:50:29 +01:00
} else {
if (Block.REDSTONE_WIRE.a(world, i, j, k)) {
// CraftBukkit start - Redstone
Type eventType = Type.PLAYER_ITEM;
Player who = (entityhuman == null) ? null : (Player) entityhuman.getBukkitEntity();
org.bukkit.inventory.ItemStack itemInHand = new CraftItemStack(itemstack);
BlockFace blockface = CraftBlock.notchToBlockFace(l);
2011-01-29 22:50:29 +01:00
PlayerItemEvent event = new PlayerItemEvent(eventType, who, itemInHand, blockClicked, blockface);
craftServer.getPluginManager().callEvent(event);
if (event.isCancelled()) {
return false;
}
// CraftBukkit end
--itemstack.count;
world.e(i, j, k, Block.REDSTONE_WIRE.id);
}
2011-01-29 22:50:29 +01:00
return true;
}
}
}