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

40 Zeilen
1.2 KiB
Java

package net.minecraft.server;
public class ItemSeeds extends Item {
private int id;
2011-11-20 09:01:14 +01:00
private int b;
2011-11-20 09:01:14 +01:00
public ItemSeeds(int i, int j, int k) {
super(i);
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);
}
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
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);
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-01-29 22:50:29 +01:00
--itemstack.count;
return true;
} else {
return false;
}
2011-09-15 02:23:52 +02:00
} else {
return false;
}
}
}