2011-01-08 12:18:05 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
public class ItemSeeds extends Item {
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
private int id;
|
2011-11-20 09:01:14 +01:00
|
|
|
private int b;
|
2011-01-08 12:18:05 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public ItemSeeds(int i, int j, int k) {
|
2011-01-08 12:18:05 +01:00
|
|
|
super(i);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.id = j;
|
2011-11-20 09:01:14 +01:00
|
|
|
this.b = k;
|
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)) {
|
2011-01-29 22:50:29 +01:00
|
|
|
int i1 = world.getTypeId(i, j, k);
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (i1 == this.b && world.isEmpty(i, j + 1, k)) {
|
2013-03-25 05:22:32 +01:00
|
|
|
// CraftBukkit start - Seeds
|
2013-03-13 23:33:27 +01:00
|
|
|
// world.setTypeIdUpdate(i, j + 1, k, this.id);
|
2013-01-27 17:44:32 +01:00
|
|
|
if (!ItemBlock.processBlockPlace(world, entityhuman, null, i, j + 1, k, this.id, 0, clickedX, clickedY, clickedZ)) {
|
2011-01-29 22:50:29 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-03-23 12:22:13 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
--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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|