2011-01-08 12:18:05 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-01-23 13:23:13 +01:00
|
|
|
import org.bukkit.block.BlockFace;
|
|
|
|
import org.bukkit.craftbukkit.CraftServer;
|
|
|
|
import org.bukkit.craftbukkit.CraftWorld;
|
2011-01-15 22:40:18 +01:00
|
|
|
import org.bukkit.craftbukkit.block.CraftBlock;
|
2011-01-15 22:29:17 +01:00
|
|
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
2011-01-23 13:23:13 +01:00
|
|
|
import org.bukkit.entity.Player;
|
2011-01-08 12:18:05 +01:00
|
|
|
import org.bukkit.event.Event.Type;
|
|
|
|
import org.bukkit.event.player.PlayerItemEvent;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 12:18:05 +01:00
|
|
|
|
|
|
|
public class ItemSeeds extends Item {
|
|
|
|
|
|
|
|
private int a;
|
|
|
|
|
|
|
|
public ItemSeeds(int i, int j) {
|
|
|
|
super(i);
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a = j;
|
2011-01-08 12:18:05 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public boolean a(ItemStack itemstack, EntityHuman entityhuman, World world, int i, int j, int k, int l) {
|
2011-01-08 12:18:05 +01:00
|
|
|
if (l != 1) {
|
|
|
|
return false;
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
int i1 = world.getTypeId(i, j, k);
|
|
|
|
|
|
|
|
if (i1 == Block.SOIL.id && world.isEmpty(i, j + 1, k)) {
|
|
|
|
// CraftBukkit start - Seeds
|
|
|
|
CraftWorld craftWorld = ((WorldServer) world).getWorld();
|
|
|
|
CraftServer craftServer = ((WorldServer) world).getServer();
|
|
|
|
|
|
|
|
Type eventType = Type.PLAYER_ITEM;
|
|
|
|
Player who = (entityhuman == null) ? null : (Player) entityhuman.getBukkitEntity();
|
|
|
|
org.bukkit.inventory.ItemStack itemInHand = new CraftItemStack(itemstack);
|
|
|
|
org.bukkit.block.Block blockClicked = craftWorld.getBlockAt(i, j, k);
|
|
|
|
BlockFace blockface = CraftBlock.notchToBlockFace(1);
|
|
|
|
|
|
|
|
PlayerItemEvent event = new PlayerItemEvent(eventType, who, itemInHand, blockClicked, blockface);
|
|
|
|
craftServer.getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
world.e(i, j + 1, k, this.a);
|
|
|
|
--itemstack.count;
|
|
|
|
return true;
|
|
|
|
} else {
|
2011-01-08 12:18:05 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|