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

47 lines
1.5 KiB
Java
Raw Normal View History

package net.minecraft.server;
import org.bukkit.craftbukkit.block.CraftBlockState; // CraftBukkit
public class ItemSeeds extends Item {
private int id;
2011-11-20 00:01:14 -08:00
private int b;
2011-11-20 00:01:14 -08:00
public ItemSeeds(int i, int j, int k) {
super(i);
this.id = j;
2011-11-20 00:01:14 -08:00
this.b = k;
2012-07-29 02:33:13 -05:00
this.a(CreativeModeTab.l);
}
2012-07-29 02:33:13 -05:00
public boolean interactWith(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l, float f, float f1, float f2) {
if (l != 1) {
return false;
2012-07-29 02:33:13 -05:00
} else if (entityhuman.e(i, j, k) && entityhuman.e(i, j + 1, k)) {
2011-01-29 22:50:29 +01:00
int i1 = world.getTypeId(i, j, k);
2011-11-20 00:01:14 -08:00
if (i1 == this.b && world.isEmpty(i, j + 1, k)) {
CraftBlockState blockState = CraftBlockState.getBlockState(world, i, j + 1, k); // CraftBukkit
2011-01-29 22:50:29 +01:00
world.setTypeId(i, j + 1, k, this.id);
2011-01-29 22:50:29 +01:00
2011-03-21 00:25:26 +01:00
// CraftBukkit start - seeds
org.bukkit.event.block.BlockPlaceEvent event = org.bukkit.craftbukkit.event.CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockState, i, j, k);
2011-03-21 00:25:26 +01:00
if (event.isCancelled() || !event.canBuild()) {
event.getBlockPlaced().setTypeId(0);
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 01:23:52 +01:00
} else {
return false;
}
}
}