Paper/src/main/java/net/minecraft/server/ItemRedstone.java

59 Zeilen
1.5 KiB
Java

package net.minecraft.server;
public class ItemRedstone extends Item {
public ItemRedstone(int i) {
super(i);
2012-07-29 09:33:13 +02:00
this.a(CreativeModeTab.d);
}
2012-07-29 09:33:13 +02:00
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l, float f, float f1, float f2) {
final int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
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
if (!entityhuman.a(i, j, k, l, itemstack)) {
2011-09-15 02:23:52 +02:00
return false;
} else {
if (Block.REDSTONE_WIRE.canPlace(world, i, j, k)) {
// CraftBukkit start
// --itemstack.count;
// world.setTypeId(i, j, k, Block.REDSTONE_WIRE.id);
if (!ItemBlock.processBlockPlace(world, entityhuman, itemstack, i, j, k, Block.REDSTONE_WIRE.id, 0, clickedX, clickedY, clickedZ)) {
2011-09-15 02:23:52 +02:00
return false;
}
// CraftBukkit end
}
2011-05-14 16:29:42 +02:00
2011-09-15 02:23:52 +02:00
return true;
}
}
}