2011-01-08 12:18:05 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class ItemSeeds extends Item {
|
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
private Block block;
|
|
|
|
private Block b;
|
2011-01-08 12:18:05 +01:00
|
|
|
|
2013-11-04 14:07:38 +01:00
|
|
|
public ItemSeeds(Block block, Block block1) {
|
|
|
|
this.block = block;
|
|
|
|
this.b = block1;
|
2012-07-29 09:33:13 +02:00
|
|
|
this.a(CreativeModeTab.l);
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
|
|
|
|
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) {
|
2013-01-27 17:44:32 +01:00
|
|
|
final int clickedX = i, clickedY = j, clickedZ = k; // CraftBukkit
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l != 1) {
|
|
|
|
return false;
|
2013-07-01 13:03:00 +02:00
|
|
|
} else if (entityhuman.a(i, j, k, l, itemstack) && entityhuman.a(i, j + 1, k, l, itemstack)) {
|
2013-11-04 14:07:38 +01:00
|
|
|
if (world.getType(i, j, k) == this.b && world.isEmpty(i, j + 1, k)) {
|
2013-03-25 05:22:32 +01:00
|
|
|
// CraftBukkit start - Seeds
|
2013-11-04 14:07:38 +01:00
|
|
|
// world.setTypeUpdate(i, j + 1, k, this.block);
|
|
|
|
if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j + 1, k, this.block, 0, clickedX, clickedY, clickedZ)) {
|
2011-01-29 22:50:29 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
--itemstack.count;
|
|
|
|
return true;
|
|
|
|
} else {
|
2011-01-08 12:18:05 +01:00
|
|
|
return false;
|
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
} else {
|
|
|
|
return false;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|