Fixed minecarts being dropped when crashing a boat. Fixes BUKKIT-1273

This commit is contained in:
EvilSeph 2012-03-22 16:58:13 -04:00
parent c2cdeac09b
commit f6bcaa6b0a

View file

@ -344,7 +344,6 @@ public class EntityBoat extends Entity {
drops.add(new CraftItemStack(Item.STICK.id,1));
}
// CraftBukkit start
drops.add(new CraftItemStack(Item.MINECART.id,1));
Vehicle vehicle = (Vehicle) this.getBukkitEntity();
VehicleDestroyEvent destroyEvent = new VehicleDestroyEvent(vehicle, null, drops);
this.world.getServer().getPluginManager().callEvent(destroyEvent);