2011-01-08 12:18:05 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit start
|
2011-03-21 00:25:26 +01:00
|
|
|
import org.bukkit.block.BlockState;
|
|
|
|
import org.bukkit.craftbukkit.block.CraftBlockState;
|
|
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
import org.bukkit.event.block.BlockPlaceEvent;
|
2011-01-11 09:25:13 +01:00
|
|
|
// CraftBukkit end
|
2011-01-08 12:18:05 +01:00
|
|
|
|
|
|
|
public class ItemSeeds extends Item {
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
private int id;
|
2011-01-08 12:18:05 +01:00
|
|
|
|
|
|
|
public ItemSeeds(int i, int j) {
|
|
|
|
super(i);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.id = 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)) {
|
2011-04-20 19:05:14 +02:00
|
|
|
BlockState blockState = CraftBlockState.getBlockState(world, i, j + 1, k); // CraftBukkit
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02: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
|
2011-04-20 19:05:14 +02:00
|
|
|
BlockPlaceEvent event = CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blockState, i, j, k, this.id);
|
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-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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|