3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-20 13:30:05 +01:00
Paper/src/main/java/net/minecraft/server/ItemRedstone.java

71 Zeilen
1.9 KiB
Java

package net.minecraft.server;
import org.bukkit.craftbukkit.block.CraftBlockState; // CraftBukkit
public class ItemRedstone extends Item {
public ItemRedstone(int i) {
super(i);
}
2012-02-29 22:31:04 +01:00
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
2011-05-14 16:29:42 +02:00
int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
2011-01-29 22:50:29 +01:00
2011-05-14 16:29:42 +02:00
if (world.getTypeId(i, j, k) != Block.SNOW.id) {
if (l == 0) {
--j;
}
2011-01-29 22:50:29 +01:00
2011-05-14 16:29:42 +02:00
if (l == 1) {
++j;
}
2011-01-29 22:50:29 +01:00
2011-05-14 16:29:42 +02:00
if (l == 2) {
--k;
}
2011-01-29 22:50:29 +01:00
2011-05-14 16:29:42 +02:00
if (l == 3) {
++k;
}
2011-01-29 22:50:29 +01:00
2011-05-14 16:29:42 +02:00
if (l == 4) {
--i;
}
2011-01-29 22:50:29 +01:00
2011-05-14 16:29:42 +02:00
if (l == 5) {
++i;
}
2011-01-29 22:50:29 +01:00
2011-05-14 16:29:42 +02:00
if (!world.isEmpty(i, j, k)) {
return false;
}
}
2011-01-29 22:50:29 +01:00
2011-11-20 09:01:14 +01:00
if (!entityhuman.d(i, j, k)) {
2011-09-15 02:23:52 +02:00
return false;
} else {
if (Block.REDSTONE_WIRE.canPlace(world, i, j, k)) {
// CraftBukkit start
CraftBlockState blockState = CraftBlockState.getBlockState(world, i, j, k);
2011-03-21 00:25:26 +01:00
world.suppressPhysics = true;
world.setRawTypeId(i, j, k, Block.REDSTONE_WIRE.id); // We update after the event
org.bukkit.event.block.BlockPlaceEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockState, clickedX, clickedY, clickedZ);
blockState.update(true);
2011-01-29 22:50:29 +01:00
2012-03-01 11:49:23 +01:00
world.suppressPhysics = false;
2011-09-15 02:23:52 +02:00
if (event.isCancelled() || !event.canBuild()) {
return false;
}
// CraftBukkit end
2012-03-01 11:49:23 +01:00
--itemstack.count;
world.setTypeId(i, j, k, Block.REDSTONE_WIRE.id);
2011-09-15 02:23:52 +02:00
}
2011-05-14 16:29:42 +02:00
2011-09-15 02:23:52 +02:00
return true;
}
}
}