2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/Block.java
|
|
|
|
+++ b/net/minecraft/server/Block.java
|
2019-12-10 23:00:00 +01:00
|
|
|
@@ -489,7 +489,13 @@
|
2017-07-28 09:23:39 +02:00
|
|
|
EntityItem entityitem = new EntityItem(world, (double) blockposition.getX() + d0, (double) blockposition.getY() + d1, (double) blockposition.getZ() + d2, itemstack);
|
|
|
|
|
2019-04-23 04:00:00 +02:00
|
|
|
entityitem.defaultPickupDelay();
|
2017-07-28 09:23:39 +02:00
|
|
|
- world.addEntity(entityitem);
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (world.captureDrops != null) {
|
|
|
|
+ world.captureDrops.add(entityitem);
|
|
|
|
+ } else {
|
|
|
|
+ world.addEntity(entityitem);
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-10 23:00:00 +01:00
|
|
|
@@ -682,6 +688,12 @@
|
|
|
|
return "Block{" + IRegistry.BLOCK.getKey(this) + "}";
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
2016-02-29 22:32:46 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+ // CraftBukkit start
|
2019-04-23 04:00:00 +02:00
|
|
|
+ public int getExpDrop(IBlockData iblockdata, World world, BlockPosition blockposition, ItemStack itemstack) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2016-02-29 22:32:46 +01:00
|
|
|
+
|
2019-04-23 04:00:00 +02:00
|
|
|
public static enum EnumRandomOffset {
|
2018-08-26 04:00:00 +02:00
|
|
|
|
2019-04-23 04:00:00 +02:00
|
|
|
NONE, XZ, XYZ;
|